drbx 2.0.0.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. drbx/__init__.py +20 -0
  2. drbx/__main__.py +5 -0
  3. drbx/cli.py +586 -0
  4. drbx/config/__init__.py +20 -0
  5. drbx/config/boutinp.py +556 -0
  6. drbx/config/model.py +34 -0
  7. drbx/config/normalization.py +66 -0
  8. drbx/data/atomic_rates/__init__.py +1 -0
  9. drbx/data/atomic_rates/iz_AMJUEL_H.x_2.1.5.json +213 -0
  10. drbx/data/atomic_rates/iz_AMJUEL_H.x_2.3.9a.json +213 -0
  11. drbx/data/atomic_rates/rec_AMJUEL_H.x_2.1.8.json +213 -0
  12. drbx/data/atomic_rates/rec_AMJUEL_H.x_2.3.13a.json +213 -0
  13. drbx/geometry/__init__.py +207 -0
  14. drbx/geometry/embedding.py +56 -0
  15. drbx/geometry/essos_import.py +1385 -0
  16. drbx/geometry/fci_geometry.py +4622 -0
  17. drbx/geometry/fci_maps.py +85 -0
  18. drbx/geometry/island_divertor.py +291 -0
  19. drbx/geometry/metric_tensor.py +99 -0
  20. drbx/geometry/open_slab.py +150 -0
  21. drbx/geometry/rotating_ellipse.py +253 -0
  22. drbx/geometry/shifted_torus.py +225 -0
  23. drbx/geometry/stellarator.py +287 -0
  24. drbx/geometry/vmec_extender_import.py +499 -0
  25. drbx/geometry/vmec_jax_import.py +306 -0
  26. drbx/linear/__init__.py +37 -0
  27. drbx/linear/dispersion.py +138 -0
  28. drbx/linear/eigen.py +91 -0
  29. drbx/native/__init__.py +224 -0
  30. drbx/native/array_backend.py +64 -0
  31. drbx/native/deck_runner.py +779 -0
  32. drbx/native/electromagnetic.py +250 -0
  33. drbx/native/expression.py +173 -0
  34. drbx/native/fci.py +295 -0
  35. drbx/native/fci_2_field_rhs.py +182 -0
  36. drbx/native/fci_4_field_rhs.py +1267 -0
  37. drbx/native/fci_boundaries.py +2494 -0
  38. drbx/native/fci_differentiable_case.py +304 -0
  39. drbx/native/fci_drb_EB_rhs.py +1243 -0
  40. drbx/native/fci_drb_rhs.py +190 -0
  41. drbx/native/fci_halo.py +1575 -0
  42. drbx/native/fci_helpers.py +350 -0
  43. drbx/native/fci_model.py +294 -0
  44. drbx/native/fci_neutral.py +139 -0
  45. drbx/native/fci_operators.py +4081 -0
  46. drbx/native/fci_sharding.py +597 -0
  47. drbx/native/fci_sheath_recycling.py +206 -0
  48. drbx/native/fci_time_integrator.py +96 -0
  49. drbx/native/fci_vorticity.py +198 -0
  50. drbx/native/fluid_1d.py +330 -0
  51. drbx/native/hasegawa_wakatani.py +196 -0
  52. drbx/native/limiters.py +57 -0
  53. drbx/native/mesh.py +238 -0
  54. drbx/native/metrics.py +234 -0
  55. drbx/native/neutrals/__init__.py +58 -0
  56. drbx/native/neutrals/atomic_rates.py +134 -0
  57. drbx/native/neutrals/detachment_sol_model.py +221 -0
  58. drbx/native/neutrals/reactions.py +164 -0
  59. drbx/native/neutrals/recycling_sol_model.py +197 -0
  60. drbx/native/sol_flux_tube.py +133 -0
  61. drbx/native/stellarator_turbulence.py +343 -0
  62. drbx/native/transport.py +134 -0
  63. drbx/native/units.py +32 -0
  64. drbx/native/vorticity.py +252 -0
  65. drbx/runtime/__init__.py +53 -0
  66. drbx/runtime/artifacts.py +161 -0
  67. drbx/runtime/memory.py +144 -0
  68. drbx/runtime/output.py +374 -0
  69. drbx/runtime/paths.py +9 -0
  70. drbx/runtime/performance.py +161 -0
  71. drbx/runtime/run_config.py +184 -0
  72. drbx/runtime/scheduler.py +99 -0
  73. drbx/runtime/state.py +40 -0
  74. drbx/validation/__init__.py +424 -0
  75. drbx/validation/autodiff_diffusion.py +329 -0
  76. drbx/validation/autodiff_diffusion_uncertainty.py +235 -0
  77. drbx/validation/diverted_tokamak_movie.py +558 -0
  78. drbx/validation/essos_fieldline_import_campaign.py +181 -0
  79. drbx/validation/essos_imported_artifact_audit.py +535 -0
  80. drbx/validation/essos_imported_drb_movie_campaign.py +2826 -0
  81. drbx/validation/essos_imported_fci_campaign.py +5241 -0
  82. drbx/validation/essos_imported_pytree_campaign.py +406 -0
  83. drbx/validation/essos_vmec_closed_field_campaign.py +314 -0
  84. drbx/validation/essos_vmec_closed_field_transient_campaign.py +629 -0
  85. drbx/validation/essos_vmec_fieldline_surface_campaign.py +620 -0
  86. drbx/validation/fluid_1d_mms_convergence.py +250 -0
  87. drbx/validation/geometry_lineouts.py +136 -0
  88. drbx/validation/geometry_slices.py +178 -0
  89. drbx/validation/publication_plotting.py +91 -0
  90. drbx/validation/stellarator_drb_pytree_campaign.py +621 -0
  91. drbx/validation/stellarator_fci_geometry_campaign.py +200 -0
  92. drbx/validation/stellarator_fci_operator_campaign.py +304 -0
  93. drbx/validation/stellarator_fci_suite_campaign.py +264 -0
  94. drbx/validation/stellarator_metric_mms_campaign.py +289 -0
  95. drbx/validation/stellarator_neutral_physics_campaign.py +255 -0
  96. drbx/validation/stellarator_sheath_recycling_campaign.py +331 -0
  97. drbx/validation/stellarator_sol_showcase.py +628 -0
  98. drbx/validation/stellarator_vorticity_campaign.py +304 -0
  99. drbx/validation/vmec_extender_edge_field_campaign.py +260 -0
  100. drbx/validation/vmec_extender_sol_smoke_campaign.py +365 -0
  101. drbx-2.0.0.dev0.dist-info/METADATA +380 -0
  102. drbx-2.0.0.dev0.dist-info/RECORD +106 -0
  103. drbx-2.0.0.dev0.dist-info/WHEEL +5 -0
  104. drbx-2.0.0.dev0.dist-info/entry_points.txt +2 -0
  105. drbx-2.0.0.dev0.dist-info/licenses/LICENSE +21 -0
  106. drbx-2.0.0.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,213 @@
1
+ {
2
+ "info": {
3
+ "sigma_v_coeffs_ref": "Amjuel H.4 2.1.5, page 135",
4
+ "sigma_v_E_coeffs_ref": "Amjuel H.10 2.1.5, page 280",
5
+ "reaction_lbl": "h + e -> h+ + 2e",
6
+ "sigma_v_E_notes": "Electron energy loss weighted rate coefficient. Data: Sawada/Fujimoto",
7
+ "sigma_v_notes": "Effective hydrogenic ionization rate Data: K. Sawada/T. Fujimoto.",
8
+ "includes_sigma_v_e": true
9
+ },
10
+ "electron_heating": 0.0,
11
+ "sigma_v_coeffs": [
12
+ [
13
+ -32.4802533034,
14
+ -0.05440669186583,
15
+ 0.09048888225109,
16
+ -0.04054078993576,
17
+ 0.008976513750477,
18
+ -0.001060334011186,
19
+ 6.846238436472e-05,
20
+ -2.242955329604e-06,
21
+ 2.890437688072e-08
22
+ ],
23
+ [
24
+ 14.2533239151,
25
+ -0.0359434716076,
26
+ -0.02014729121556,
27
+ 0.0103977361573,
28
+ -0.001771792153042,
29
+ 0.0001237467264294,
30
+ -3.130184159149e-06,
31
+ -3.051994601527e-08,
32
+ 1.888148175469e-09
33
+ ],
34
+ [
35
+ -6.632235026785,
36
+ 0.09255558353174,
37
+ -0.005580210154625,
38
+ -0.005902218748238,
39
+ 0.001295609806553,
40
+ -0.0001056721622588,
41
+ 4.646310029498e-06,
42
+ -1.479612391848e-07,
43
+ 2.85225125832e-09
44
+ ],
45
+ [
46
+ 2.059544135448,
47
+ -0.07562462086943,
48
+ 0.01519595967433,
49
+ 0.0005803498098354,
50
+ -0.0003527285012725,
51
+ 3.201533740322e-05,
52
+ -1.835196889733e-06,
53
+ 9.474014343303e-08,
54
+ -2.342505583774e-09
55
+ ],
56
+ [
57
+ -0.442537033141,
58
+ 0.02882634019199,
59
+ -0.00728577148505,
60
+ 0.0004643389885987,
61
+ 1.145700685235e-06,
62
+ 8.493662724988e-07,
63
+ -1.001032516512e-08,
64
+ -1.476839184318e-08,
65
+ 6.047700368169e-10
66
+ ],
67
+ [
68
+ 0.06309381861496,
69
+ -0.00578868653578,
70
+ 0.00150738295525,
71
+ -0.0001201550548662,
72
+ 6.574487543511e-06,
73
+ -9.678782818849e-07,
74
+ 5.176265845225e-08,
75
+ 1.29155167686e-09,
76
+ -9.685157340473e-11
77
+ ],
78
+ [
79
+ -0.005620091829261,
80
+ 0.000632910556804,
81
+ -0.0001527777697951,
82
+ 8.270124691336e-06,
83
+ 3.224101773605e-08,
84
+ 4.377402649057e-08,
85
+ -2.622921686955e-09,
86
+ -2.259663431436e-10,
87
+ 1.161438990709e-11
88
+ ],
89
+ [
90
+ 0.0002812016578355,
91
+ -3.564132950345e-05,
92
+ 7.222726811078e-06,
93
+ 1.433018694347e-07,
94
+ -1.097431215601e-07,
95
+ 7.789031791949e-09,
96
+ -4.197728680251e-10,
97
+ 3.032260338723e-11,
98
+ -8.911076930014e-13
99
+ ],
100
+ [
101
+ -6.011143453374e-06,
102
+ 8.089651265488e-07,
103
+ -1.186212683668e-07,
104
+ -2.381080756307e-08,
105
+ 6.271173694534e-09,
106
+ -5.48301024493e-10,
107
+ 3.064611702159e-11,
108
+ -1.355903284487e-12,
109
+ 2.935080031599e-14
110
+ ]
111
+ ],
112
+ "sigma_v_E_coeffs": [
113
+ [
114
+ -24.97580168306,
115
+ 0.001081653961822,
116
+ -0.0007358936044605,
117
+ 0.0004122398646951,
118
+ -0.0001408153300988,
119
+ 2.46973083622e-05,
120
+ -2.212823709798e-06,
121
+ 9.648139704737e-08,
122
+ -1.611904413846e-09
123
+ ],
124
+ [
125
+ 10.04448839974,
126
+ -0.003189474633369,
127
+ 0.002510128351932,
128
+ -0.0007707040988954,
129
+ 0.0001031309578578,
130
+ -3.716939423005e-06,
131
+ -4.249704742353e-07,
132
+ 4.164960852522e-08,
133
+ -9.893423877739e-10
134
+ ],
135
+ [
136
+ -4.867952931298,
137
+ -0.00585226785069,
138
+ 0.002867458651322,
139
+ -0.0008328668093987,
140
+ 0.0002056134355492,
141
+ -3.301570807523e-05,
142
+ 2.831739755462e-06,
143
+ -1.164969298033e-07,
144
+ 1.78544027879e-09
145
+ ],
146
+ [
147
+ 1.689422238067,
148
+ 0.007744372210287,
149
+ -0.003087364236497,
150
+ 0.000470767628842,
151
+ -5.508611815406e-05,
152
+ 7.305867762241e-06,
153
+ -6.000115718138e-07,
154
+ 2.045211951761e-08,
155
+ -1.79031287169e-10
156
+ ],
157
+ [
158
+ -0.41035323201,
159
+ -0.003622291213236,
160
+ 0.001327415215304,
161
+ -0.0001424078519508,
162
+ 3.307339563081e-06,
163
+ 5.256679519499e-09,
164
+ 7.597020291557e-10,
165
+ 1.799505288362e-09,
166
+ -9.280890205774e-11
167
+ ],
168
+ [
169
+ 0.06469718387357,
170
+ 0.0008268567898126,
171
+ -0.0002830939623802,
172
+ 2.41184802496e-05,
173
+ 5.7079848611e-07,
174
+ -1.0169456933e-07,
175
+ 3.517154874443e-09,
176
+ -4.453195673947e-10,
177
+ 2.002478264932e-11
178
+ ],
179
+ [
180
+ -0.006215861314764,
181
+ -9.836595524255e-05,
182
+ 3.017296919092e-05,
183
+ -1.474253805845e-06,
184
+ -2.397868837417e-07,
185
+ 1.518743025531e-08,
186
+ 4.149084521319e-10,
187
+ -6.803200444549e-12,
188
+ -1.151855939531e-12
189
+ ],
190
+ [
191
+ 0.000328980989546,
192
+ 5.845697922558e-06,
193
+ -1.479323780613e-06,
194
+ -4.633029022577e-08,
195
+ 3.337390374041e-08,
196
+ -1.770252084837e-09,
197
+ -5.289806153651e-11,
198
+ 3.86439477625e-12,
199
+ -8.694978774411e-15
200
+ ],
201
+ [
202
+ -7.335808238917e-06,
203
+ -1.367574486885e-07,
204
+ 2.423236476442e-08,
205
+ 5.733871119707e-09,
206
+ -1.512777532459e-09,
207
+ 8.733801272834e-11,
208
+ 7.196798841269e-13,
209
+ -1.441033650378e-13,
210
+ 1.734769090475e-15
211
+ ]
212
+ ]
213
+ }
@@ -0,0 +1,213 @@
1
+ {
2
+ "info": {
3
+ "sigma_v_coeffs_ref": "Amjuel H.4 2.3.9a, page 161",
4
+ "sigma_v_E_coeffs_ref": "Amjuel H.10 2.3.9a, page 293",
5
+ "reaction_lbl": "e + he -> he+ + 2e",
6
+ "sigma_v_E_notes": "Eth=24.588 eV effective electron cooling rate due to ionization of Helium atoms. Fujimoto Formulation II (only ground level transported, no meta-stables kept explicit)",
7
+ "sigma_v_notes": "Helium multi-step model, here ionization, Eth=24.56 eV. Fujimoto Formulation II, meta-stable unresolved, (only ground level transported, no metastables kept explicit).",
8
+ "includes_sigma_v_e": true
9
+ },
10
+ "electron_heating": 0.0,
11
+ "sigma_v_coeffs": [
12
+ [
13
+ -42.27118452798,
14
+ 0.1294554451998,
15
+ -0.08433979538052,
16
+ 0.04910721979375,
17
+ -0.01454047282438,
18
+ 0.002178105605879,
19
+ -0.0001657512355348,
20
+ 6.161429564793e-06,
21
+ -8.910615590909e-08
22
+ ],
23
+ [
24
+ 24.11668100975,
25
+ -0.08121999208281,
26
+ 0.04052570160482,
27
+ -0.02367924962508,
28
+ 0.008488392041366,
29
+ -0.001452752408581,
30
+ 0.0001170902182939,
31
+ -4.410479245308e-06,
32
+ 6.297315949647e-08
33
+ ],
34
+ [
35
+ -12.03181133667,
36
+ -0.003998282970932,
37
+ -0.00281991919306,
38
+ -0.00190488772724,
39
+ -0.0002390948585334,
40
+ 0.0001844484422285,
41
+ -1.97272802786e-05,
42
+ 7.779440219801e-07,
43
+ -1.033814145233e-08
44
+ ],
45
+ [
46
+ 3.829444688521,
47
+ 0.02546414073266,
48
+ 0.002654490306111,
49
+ 0.001087493205419,
50
+ -0.0004469192206896,
51
+ 3.71553815559e-05,
52
+ -1.595144154431e-06,
53
+ 6.311039124056e-08,
54
+ -1.48598916668e-09
55
+ ],
56
+ [
57
+ -0.7945839257175,
58
+ -0.0149359787485,
59
+ -0.001018320076497,
60
+ 0.0002821927325759,
61
+ 3.269264854581e-05,
62
+ -5.937518354028e-06,
63
+ 4.714656637197e-07,
64
+ -2.433462923993e-08,
65
+ 5.307423532159e-10
66
+ ],
67
+ [
68
+ 0.1054334178555,
69
+ 0.004338821244147,
70
+ -0.0001483560478208,
71
+ -6.901574689672e-05,
72
+ 6.350490312899e-06,
73
+ -4.414167358057e-07,
74
+ 1.266603603049e-08,
75
+ 8.049435558339e-10,
76
+ -3.807796193572e-11
77
+ ],
78
+ [
79
+ -0.008578643565653,
80
+ -0.0006689202603525,
81
+ 9.084162487421e-05,
82
+ -4.184111347149e-06,
83
+ 1.153919327151e-07,
84
+ 3.797435455934e-08,
85
+ -4.123383037275e-09,
86
+ 1.095960078746e-10,
87
+ -5.109801608123e-14
88
+ ],
89
+ [
90
+ 0.0003886232727181,
91
+ 5.180805123476e-05,
92
+ -1.125453787291e-05,
93
+ 1.536214841434e-06,
94
+ -1.632601398517e-07,
95
+ 8.948177075796e-09,
96
+ -1.853674996294e-10,
97
+ 1.342166707999e-14,
98
+ 1.184569645146e-14
99
+ ],
100
+ [
101
+ -7.487575233223e-06,
102
+ -1.58297743374e-06,
103
+ 4.413792107083e-07,
104
+ -7.832095176637e-08,
105
+ 9.58697477495e-09,
106
+ -6.73907617081e-10,
107
+ 2.565598443992e-11,
108
+ -4.994625098807e-13,
109
+ 4.12404880445e-15
110
+ ]
111
+ ],
112
+ "sigma_v_E_coeffs": [
113
+ [
114
+ -35.35258393674,
115
+ -0.03428249311738,
116
+ 0.06378071832382,
117
+ -0.02849818870377,
118
+ 0.006041903480645,
119
+ -0.000686453216556,
120
+ 4.251155616815e-05,
121
+ -1.351759350582e-06,
122
+ 1.728801977101e-08
123
+ ],
124
+ [
125
+ 19.81855871044,
126
+ 0.04854482688892,
127
+ -0.05088928946831,
128
+ 0.01732110218818,
129
+ -0.002781419068092,
130
+ 0.0002244804771683,
131
+ -8.875290574348e-06,
132
+ 1.399429819761e-07,
133
+ -1.38977874051e-10
134
+ ],
135
+ [
136
+ -9.334355651224,
137
+ -0.04524206463148,
138
+ 0.02103002869692,
139
+ -0.004463941003028,
140
+ 0.0002900917070658,
141
+ 2.482449118881e-05,
142
+ -4.278064413224e-06,
143
+ 2.040570181783e-07,
144
+ -3.324224092217e-09
145
+ ],
146
+ [
147
+ 2.80031425041,
148
+ 0.0247435078798,
149
+ -0.006012991773715,
150
+ 0.0008918009845745,
151
+ -2.616249899141e-05,
152
+ -6.885545577757e-06,
153
+ 7.013616309712e-07,
154
+ -2.570063437935e-08,
155
+ 3.573487194914e-10
156
+ ],
157
+ [
158
+ -0.5489088598705,
159
+ -0.007339538872774,
160
+ 0.0007783071302508,
161
+ -4.483274558979e-05,
162
+ 1.900991581685e-06,
163
+ -9.747171692727e-07,
164
+ 1.349829568374e-07,
165
+ -5.815812094637e-09,
166
+ 6.686532777575e-11
167
+ ],
168
+ [
169
+ 0.06902095610357,
170
+ 0.001234159378604,
171
+ 2.989745411104e-05,
172
+ -3.04090620334e-05,
173
+ 2.951386149372e-06,
174
+ 7.592185107575e-08,
175
+ -1.805060230413e-08,
176
+ 3.156859219121e-10,
177
+ 1.07116869734e-11
178
+ ],
179
+ [
180
+ -0.00534294006913,
181
+ -0.0001223169549107,
182
+ -1.500790305823e-05,
183
+ 5.253922160283e-06,
184
+ -4.468905893926e-07,
185
+ 7.483496971361e-09,
186
+ -9.777558713428e-10,
187
+ 1.770619394125e-10,
188
+ -6.050995244427e-12
189
+ ],
190
+ [
191
+ 0.0002313175089975,
192
+ 6.966436907981e-06,
193
+ 8.94496290981e-07,
194
+ -1.712024596447e-07,
195
+ -9.782015167261e-09,
196
+ 2.499416349949e-09,
197
+ 4.731973382221e-11,
198
+ -1.845161957843e-11,
199
+ 6.01107014323e-13
200
+ ],
201
+ [
202
+ -4.279800193256e-06,
203
+ -1.81546666991e-07,
204
+ -2.282174576618e-09,
205
+ -6.972920569943e-09,
206
+ 2.60719149454e-09,
207
+ -2.870919514967e-10,
208
+ 8.059675146168e-12,
209
+ 3.704316808942e-13,
210
+ -1.713225271579e-14
211
+ ]
212
+ ]
213
+ }
@@ -0,0 +1,213 @@
1
+ {
2
+ "info": {
3
+ "sigma_v_coeffs_ref": "Amjuel H.4 2.1.8, page 141",
4
+ "sigma_v_E_coeffs_ref": "Amjuel H.10 2.1.8, page 284",
5
+ "reaction_lbl": "h+ + e -> h",
6
+ "sigma_v_E_notes": "effective electron cooling rate due to rad.+three-b. recombination potential energy loss 13.6*(effrec.rate) still needs to be subtracted (may render the loss negative, i.e., turn it into a gain) Hence: the quantitity given here happens to be the radiation loss.",
7
+ "sigma_v_notes": "Effective hydrogenic recombination rate Data: K. Sawada, T.Fujimoto, radiative + three-body contribution",
8
+ "includes_sigma_v_e": true
9
+ },
10
+ "electron_heating": 13.6,
11
+ "sigma_v_coeffs": [
12
+ [
13
+ -28.58858570847,
14
+ 0.02068671746773,
15
+ -0.007868331504755,
16
+ 0.003843362133859,
17
+ -0.0007411492158905,
18
+ 9.273687892997e-05,
19
+ -7.063529824805e-06,
20
+ 3.026539277057e-07,
21
+ -5.373940838104e-09
22
+ ],
23
+ [
24
+ -0.7676413320499,
25
+ 0.0127800603259,
26
+ -0.01870326896978,
27
+ 0.00382855504889,
28
+ -0.0003627770385335,
29
+ 4.401007253801e-07,
30
+ 1.932701779173e-06,
31
+ -1.176872895577e-07,
32
+ 2.215851843121e-09
33
+ ],
34
+ [
35
+ 0.002823851790251,
36
+ -0.001907812518731,
37
+ 0.01121251125171,
38
+ -0.003711328186517,
39
+ 0.0006617485083301,
40
+ -6.860774445002e-05,
41
+ 4.508046989099e-06,
42
+ -1.723423509284e-07,
43
+ 2.805361431741e-09
44
+ ],
45
+ [
46
+ -0.01062884273731,
47
+ -0.01010719783828,
48
+ 0.004208412930611,
49
+ -0.00100574441054,
50
+ 0.0001013652422369,
51
+ -2.044691594727e-06,
52
+ -4.431181498017e-07,
53
+ 3.457903389784e-08,
54
+ -7.374639775683e-10
55
+ ],
56
+ [
57
+ 0.001582701550903,
58
+ 0.002794099401979,
59
+ -0.002024796037098,
60
+ 0.0006250304936976,
61
+ -9.224891301052e-05,
62
+ 7.546853961575e-06,
63
+ -3.682709551169e-07,
64
+ 1.035928615391e-08,
65
+ -1.325312585168e-10
66
+ ],
67
+ [
68
+ -0.0001938012790522,
69
+ 0.0002148453735781,
70
+ 3.393285358049e-05,
71
+ -3.746423753955e-05,
72
+ 7.509176112468e-06,
73
+ -8.688365258514e-07,
74
+ 7.144767938783e-08,
75
+ -3.367897014044e-09,
76
+ 6.250111099227e-11
77
+ ],
78
+ [
79
+ 6.041794354114e-06,
80
+ -0.0001421502819671,
81
+ 6.14387907608e-05,
82
+ -1.232549226121e-05,
83
+ 1.394562183496e-06,
84
+ -6.434833988001e-08,
85
+ -2.746804724917e-09,
86
+ 3.564291012995e-10,
87
+ -8.55170819761e-12
88
+ ],
89
+ [
90
+ 1.742316850715e-06,
91
+ 1.595051038326e-05,
92
+ -7.858419208668e-06,
93
+ 1.774935420144e-06,
94
+ -2.187584251561e-07,
95
+ 1.327090702659e-08,
96
+ -1.386720240985e-10,
97
+ -1.946206688519e-11,
98
+ 5.745422385081e-13
99
+ ],
100
+ [
101
+ -1.384927774988e-07,
102
+ -5.664673433879e-07,
103
+ 2.886857762387e-07,
104
+ -6.591743182569e-08,
105
+ 8.008790343319e-09,
106
+ -4.805837071646e-10,
107
+ 6.459706573699e-12,
108
+ 5.510729582791e-13,
109
+ -1.680871303639e-14
110
+ ]
111
+ ],
112
+ "sigma_v_E_coeffs": [
113
+ [
114
+ -25.92450349909,
115
+ 0.01222097271874,
116
+ 4.278499401907e-05,
117
+ 0.001943967743593,
118
+ -0.0007123474602102,
119
+ 0.0001303523395892,
120
+ -1.186560752561e-05,
121
+ 5.334455630031e-07,
122
+ -9.349857887253e-09
123
+ ],
124
+ [
125
+ -0.7290670236493,
126
+ -0.01540323930666,
127
+ -0.00340609377919,
128
+ 0.001532243431817,
129
+ -0.0004658423772784,
130
+ 5.972448753445e-05,
131
+ -4.070843294052e-06,
132
+ 1.378709880644e-07,
133
+ -1.818079729166e-09
134
+ ],
135
+ [
136
+ 0.02363925869096,
137
+ 0.01164453346305,
138
+ -0.005845209334594,
139
+ 0.002854145868307,
140
+ -0.0005077485291132,
141
+ 4.211106637742e-05,
142
+ -1.251436618314e-06,
143
+ -1.626555745259e-08,
144
+ 1.073458810743e-09
145
+ ],
146
+ [
147
+ 0.003645333930947,
148
+ -0.001005820792983,
149
+ 0.0006956352274249,
150
+ -0.0009305056373739,
151
+ 0.0002584896294384,
152
+ -3.294643898894e-05,
153
+ 2.112924018518e-06,
154
+ -6.544682842175e-08,
155
+ 7.8102930757e-10
156
+ ],
157
+ [
158
+ 0.001594184648757,
159
+ -1.582238007548e-05,
160
+ 0.0004073695619272,
161
+ -9.379169243859e-05,
162
+ 1.490890502214e-06,
163
+ 2.245292872209e-06,
164
+ -3.150901014513e-07,
165
+ 1.631965635818e-08,
166
+ -2.984093025695e-10
167
+ ],
168
+ [
169
+ -0.001216668033378,
170
+ -0.0003503070140126,
171
+ 0.0001043500296633,
172
+ 9.536162767321e-06,
173
+ -6.908681884097e-06,
174
+ 8.232019008169e-07,
175
+ -2.905331051259e-08,
176
+ -3.169038517749e-10,
177
+ 2.442765766167e-11
178
+ ],
179
+ [
180
+ 0.0002376115895241,
181
+ 0.0001172709777146,
182
+ -6.695182045674e-05,
183
+ 1.18818400621e-05,
184
+ -4.381514364966e-07,
185
+ -6.936267173079e-08,
186
+ 6.592249255001e-09,
187
+ -1.778887958831e-10,
188
+ 1.160762106747e-12
189
+ ],
190
+ [
191
+ -1.930977636766e-05,
192
+ -1.318401491304e-05,
193
+ 8.848025453481e-06,
194
+ -2.07237071139e-06,
195
+ 2.055919993599e-07,
196
+ -7.489632654212e-09,
197
+ -7.073797030749e-11,
198
+ 1.047087505147e-11,
199
+ -1.87744627135e-13
200
+ ],
201
+ [
202
+ 5.599257775146e-07,
203
+ 4.977823319311e-07,
204
+ -3.615013823092e-07,
205
+ 9.466989306497e-08,
206
+ -1.146485227699e-08,
207
+ 6.772338917155e-10,
208
+ -1.776496344763e-11,
209
+ 7.199195061382e-14,
210
+ 3.929300283002e-15
211
+ ]
212
+ ]
213
+ }