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,424 @@
1
+ from .autodiff_diffusion import (
2
+ DiffusionAutodiffSetup,
3
+ StrongScalingPoint,
4
+ build_diffusion_autodiff_setup,
5
+ compute_strong_scaling_points,
6
+ design_field,
7
+ design_field_from_physical,
8
+ finite_difference_gradient,
9
+ objective_for_parameter_vector,
10
+ objective_for_physical_parameters,
11
+ optimize_inverse_design,
12
+ physical_to_theta,
13
+ simulate_density_history,
14
+ simulate_density_history_from_physical,
15
+ theta_to_physical,
16
+ )
17
+ from .autodiff_diffusion_uncertainty import (
18
+ AutodiffDiffusionUncertaintyArtifacts,
19
+ build_autodiff_diffusion_uncertainty_report,
20
+ create_autodiff_diffusion_uncertainty_package,
21
+ save_autodiff_diffusion_uncertainty_plot,
22
+ )
23
+ from .diverted_tokamak_movie import (
24
+ DivertedTokamakFieldHistory,
25
+ DivertedTokamakGeometry,
26
+ DivertedTokamakMovieArtifacts,
27
+ assemble_tokamak_rank_history,
28
+ build_diverted_tokamak_analysis,
29
+ create_diverted_tokamak_movie_package,
30
+ create_diverted_tokamak_movie_package_from_arrays,
31
+ load_diverted_tokamak_arrays_npz,
32
+ load_diverted_tokamak_geometry,
33
+ save_diverted_tokamak_gif,
34
+ save_diverted_tokamak_poster_frame,
35
+ save_diverted_tokamak_snapshot_panel,
36
+ toroidal_mean_fluctuation,
37
+ write_diverted_tokamak_analysis_json,
38
+ write_diverted_tokamak_arrays_npz,
39
+ )
40
+ from .essos_fieldline_import_campaign import (
41
+ EssosFieldLineImportArtifacts,
42
+ build_essos_fieldline_import_report,
43
+ create_essos_fieldline_import_package,
44
+ save_essos_fieldline_import_plot,
45
+ )
46
+ from .essos_vmec_fieldline_surface_campaign import (
47
+ EssosVmecFieldlineSurfaceArtifacts,
48
+ build_essos_vmec_fieldline_surface_campaign,
49
+ create_essos_vmec_fieldline_surface_package,
50
+ save_essos_vmec_fieldline_surface_plot,
51
+ )
52
+ from .essos_vmec_closed_field_campaign import (
53
+ EssosVmecClosedFieldArtifacts,
54
+ EssosVmecClosedFieldDryRunArtifacts,
55
+ build_essos_vmec_closed_field_report,
56
+ create_essos_vmec_closed_field_dry_run_package,
57
+ create_essos_vmec_closed_field_package,
58
+ save_essos_vmec_closed_field_plot,
59
+ )
60
+ from .essos_vmec_closed_field_transient_campaign import (
61
+ EssosVmecClosedFieldTransientArtifacts,
62
+ EssosVmecClosedFieldTransientDryRunArtifacts,
63
+ build_essos_vmec_closed_field_transient_campaign,
64
+ create_essos_vmec_closed_field_transient_dry_run_package,
65
+ create_essos_vmec_closed_field_transient_package,
66
+ create_essos_vmec_closed_field_transient_package_from_geometry,
67
+ save_essos_vmec_closed_field_transient_movie,
68
+ save_essos_vmec_closed_field_transient_plot,
69
+ )
70
+ from .vmec_extender_edge_field_campaign import (
71
+ VmecExtenderEdgeFieldCampaignArtifacts,
72
+ build_vmec_extender_edge_field_campaign_report,
73
+ create_vmec_extender_edge_field_campaign_package,
74
+ save_vmec_extender_edge_field_campaign_plot,
75
+ )
76
+ from .vmec_extender_sol_smoke_campaign import (
77
+ VmecExtenderSolSmokeArtifacts,
78
+ VmecExtenderSolSmokeResult,
79
+ build_vmec_extender_sol_smoke_report,
80
+ create_vmec_extender_sol_smoke_package,
81
+ save_vmec_extender_sol_smoke_plot,
82
+ simulate_vmec_extender_scalar_sol_smoke,
83
+ )
84
+ from .essos_imported_fci_campaign import (
85
+ EssosImportedConnectionLengthLevels,
86
+ EssosImportedFciCampaignArtifacts,
87
+ EssosImportedConnectionLengthRefinementArtifacts,
88
+ EssosImportedEndpointLabelLevels,
89
+ EssosImportedEndpointLabelRefinementArtifacts,
90
+ build_essos_imported_connection_length_refinement_diagnostics,
91
+ build_essos_imported_connection_length_refinement_campaign,
92
+ build_essos_imported_endpoint_label_refinement_campaign,
93
+ build_essos_imported_endpoint_label_refinement_diagnostics,
94
+ build_essos_imported_fci_campaign,
95
+ build_essos_imported_fci_source_profile_gate,
96
+ build_live_essos_imported_endpoint_label_levels,
97
+ build_live_essos_imported_connection_length_levels,
98
+ create_essos_imported_connection_length_refinement_package,
99
+ create_essos_imported_endpoint_label_refinement_package,
100
+ create_essos_imported_fci_campaign_package,
101
+ create_live_essos_imported_connection_length_refinement_package,
102
+ create_live_essos_imported_endpoint_label_refinement_package,
103
+ save_essos_imported_endpoint_label_refinement_plot,
104
+ save_essos_imported_connection_length_refinement_plot,
105
+ save_essos_imported_fci_campaign_plot,
106
+ save_essos_imported_fci_source_profile_gate_plot,
107
+ )
108
+ from .essos_imported_artifact_audit import (
109
+ audit_essos_imported_artifact_report,
110
+ audit_essos_imported_artifact_reports,
111
+ audit_hybrid_open_sol_promotion_evidence,
112
+ )
113
+ from .essos_imported_pytree_campaign import (
114
+ EssosImportedPytreeCampaignArtifacts,
115
+ build_essos_imported_pytree_campaign,
116
+ create_essos_imported_pytree_campaign_package,
117
+ initial_essos_imported_drb_state,
118
+ save_essos_imported_pytree_campaign_plot,
119
+ )
120
+ from .essos_imported_drb_movie_campaign import (
121
+ ESSOS_IMPORTED_DRB_MOVIE_REFINEMENT_METRICS,
122
+ EssosImportedDrbMovieArtifacts,
123
+ EssosImportedDrbMovieRefinementArtifacts,
124
+ EssosImportedDrbMovieRefinementCampaignArtifacts,
125
+ EssosImportedDrbMovieStationarityArtifacts,
126
+ build_essos_imported_drb_movie_campaign,
127
+ build_essos_imported_drb_movie_refinement_diagnostics,
128
+ build_essos_imported_drb_movie_refinement_next_campaign,
129
+ build_essos_imported_drb_movie_refinement_summary,
130
+ build_essos_imported_drb_movie_stationarity_report,
131
+ classify_essos_imported_drb_movie_evidence,
132
+ create_essos_imported_drb_movie_refinement_campaign_package,
133
+ create_essos_imported_drb_movie_refinement_summary_package,
134
+ create_essos_imported_drb_movie_package,
135
+ create_essos_imported_drb_movie_stationarity_package,
136
+ save_essos_imported_drb_3d_frame,
137
+ save_essos_imported_drb_3d_movie,
138
+ save_essos_imported_drb_diagnostics_panel,
139
+ save_essos_imported_drb_snapshot_panel,
140
+ )
141
+ from .geometry_lineouts import (
142
+ LineoutSpec,
143
+ build_lineout_report,
144
+ save_lineout_summary_plot,
145
+ write_lineout_arrays_npz,
146
+ )
147
+ from .geometry_slices import (
148
+ SliceSpec,
149
+ build_slice_report,
150
+ save_slice_gif,
151
+ save_slice_summary_plot,
152
+ write_slice_arrays_npz,
153
+ write_slice_report_json,
154
+ )
155
+ from .stellarator_fci_geometry_campaign import (
156
+ StellaratorFciGeometryCampaignArtifacts,
157
+ build_stellarator_fci_geometry_report,
158
+ create_stellarator_fci_geometry_campaign_package,
159
+ save_stellarator_fci_geometry_plot,
160
+ )
161
+ from .stellarator_fci_operator_campaign import (
162
+ StellaratorFciOperatorCampaignArtifacts,
163
+ build_stellarator_fci_operator_campaign,
164
+ create_stellarator_fci_operator_campaign_package,
165
+ save_stellarator_fci_operator_plot,
166
+ )
167
+ from .stellarator_metric_mms_campaign import (
168
+ StellaratorMetricMmsCampaignArtifacts,
169
+ build_stellarator_metric_mms_campaign,
170
+ create_stellarator_metric_mms_campaign_package,
171
+ save_stellarator_metric_mms_plot,
172
+ )
173
+ from .stellarator_fci_suite_campaign import (
174
+ StellaratorFciSuiteCampaignArtifacts,
175
+ build_stellarator_fci_suite_campaign,
176
+ create_stellarator_fci_suite_campaign_package,
177
+ save_stellarator_fci_suite_plot,
178
+ )
179
+ from .stellarator_sheath_recycling_campaign import (
180
+ StellaratorSheathRecyclingCampaignArtifacts,
181
+ build_stellarator_sheath_recycling_campaign,
182
+ create_stellarator_sheath_recycling_campaign_package,
183
+ save_stellarator_sheath_recycling_plot,
184
+ )
185
+ from .stellarator_neutral_physics_campaign import (
186
+ StellaratorNeutralPhysicsCampaignArtifacts,
187
+ build_stellarator_neutral_physics_campaign,
188
+ create_stellarator_neutral_physics_campaign_package,
189
+ save_stellarator_neutral_physics_plot,
190
+ )
191
+ from .stellarator_vorticity_campaign import (
192
+ StellaratorVorticityCampaignArtifacts,
193
+ build_stellarator_vorticity_campaign,
194
+ create_stellarator_vorticity_campaign_package,
195
+ save_stellarator_vorticity_plot,
196
+ )
197
+ from .stellarator_drb_pytree_campaign import (
198
+ StellaratorDrbPytreeCampaignArtifacts,
199
+ build_stellarator_drb_pytree_campaign,
200
+ create_stellarator_drb_pytree_campaign_package,
201
+ initial_fci_drb_state,
202
+ save_stellarator_drb_pytree_plot,
203
+ )
204
+ from .stellarator_sol_showcase import (
205
+ StellaratorSolShowcaseArtifacts,
206
+ build_stellarator_sol_showcase_report,
207
+ create_stellarator_sol_showcase_package,
208
+ save_stellarator_sol_3d_frame,
209
+ save_stellarator_sol_3d_movie,
210
+ save_stellarator_sol_diagnostics_panel,
211
+ save_stellarator_sol_snapshot_panel,
212
+ simulate_reduced_stellarator_sol_dynamics,
213
+ )
214
+ from .fluid_1d_mms_convergence import (
215
+ Fluid1DMmsConvergenceArtifacts,
216
+ build_fluid_1d_mms_convergence_report,
217
+ create_fluid_1d_mms_convergence_package,
218
+ save_fluid_1d_mms_convergence_plot,
219
+ )
220
+ __all__ = [
221
+ "AlfvenWaveAnalysisResult",
222
+ "AlfvenWaveBenchmarkScalars",
223
+ "AlfvenWaveParityResult",
224
+ "analyze_alfven_wave_array_payload",
225
+ "analyze_alfven_wave_npz",
226
+ "compare_alfven_wave_array_payloads",
227
+ "compare_alfven_wave_npz",
228
+ "compute_alfven_wave_benchmark_scalars",
229
+ "save_alfven_wave_diagnostic_plot",
230
+ "save_alfven_wave_parity_plot",
231
+ "write_alfven_wave_analysis_json",
232
+ "write_alfven_wave_parity_json",
233
+ "Blob2DAnalysisResult",
234
+ "Blob2DParityResult",
235
+ "analyze_blob2d_array_payload",
236
+ "analyze_blob2d_npz",
237
+ "compare_blob2d_analysis_results",
238
+ "compare_blob2d_array_payloads",
239
+ "compare_blob2d_artifacts",
240
+ "compare_blob2d_npz",
241
+ "load_blob2d_analysis_json",
242
+ "save_blob2d_parity_plot",
243
+ "write_blob2d_analysis_json",
244
+ "write_blob2d_parity_json",
245
+ "DriftWaveAnalysisResult",
246
+ "DriftWaveBenchmarkScalars",
247
+ "DriftWaveParityResult",
248
+ "DriftWaveParityVariableError",
249
+ "analyze_drift_wave_array_payload",
250
+ "analyze_drift_wave_npz",
251
+ "compare_drift_wave_array_payloads",
252
+ "compare_drift_wave_npz",
253
+ "compute_drift_wave_benchmark_scalars",
254
+ "save_drift_wave_diagnostic_plot",
255
+ "save_drift_wave_parity_plot",
256
+ "write_drift_wave_analysis_json",
257
+ "write_drift_wave_parity_json",
258
+ "NeutralMixedAnalysisResult",
259
+ "NeutralMixedParityResult",
260
+ "NeutralMixedSeriesError",
261
+ "NeutralMixedTermBalanceCampaignArtifacts",
262
+ "analyze_neutral_mixed_array_payload",
263
+ "analyze_neutral_mixed_npz",
264
+ "compare_neutral_mixed_analysis_results",
265
+ "compare_neutral_mixed_array_payloads",
266
+ "compare_neutral_mixed_artifacts",
267
+ "compare_neutral_mixed_npz",
268
+ "load_neutral_mixed_analysis_json",
269
+ "save_neutral_mixed_diagnostic_plot",
270
+ "save_neutral_mixed_parity_plot",
271
+ "write_neutral_mixed_analysis_json",
272
+ "write_neutral_mixed_parity_json",
273
+ "build_neutral_mixed_reference_input_closure_report",
274
+ "build_neutral_mixed_term_balance_campaign_report",
275
+ "create_neutral_mixed_term_balance_campaign_package",
276
+ "save_neutral_mixed_term_balance_campaign_plot",
277
+ "write_neutral_mixed_diagnostic_input",
278
+ "write_neutral_mixed_reference_input_closure_json",
279
+ "DiffusionAutodiffSetup",
280
+ "StrongScalingPoint",
281
+ "build_diffusion_autodiff_setup",
282
+ "compute_strong_scaling_points",
283
+ "design_field",
284
+ "design_field_from_physical",
285
+ "finite_difference_gradient",
286
+ "objective_for_parameter_vector",
287
+ "objective_for_physical_parameters",
288
+ "optimize_inverse_design",
289
+ "physical_to_theta",
290
+ "simulate_density_history",
291
+ "simulate_density_history_from_physical",
292
+ "theta_to_physical",
293
+ "AutodiffDiffusionUncertaintyArtifacts",
294
+ "build_autodiff_diffusion_uncertainty_report",
295
+ "create_autodiff_diffusion_uncertainty_package",
296
+ "save_autodiff_diffusion_uncertainty_plot",
297
+ "DivertedTokamakFieldHistory",
298
+ "DivertedTokamakGeometry",
299
+ "DivertedTokamakMovieArtifacts",
300
+ "assemble_tokamak_rank_history",
301
+ "build_diverted_tokamak_analysis",
302
+ "create_diverted_tokamak_movie_package",
303
+ "create_diverted_tokamak_movie_package_from_arrays",
304
+ "load_diverted_tokamak_arrays_npz",
305
+ "load_diverted_tokamak_geometry",
306
+ "save_diverted_tokamak_gif",
307
+ "save_diverted_tokamak_poster_frame",
308
+ "save_diverted_tokamak_snapshot_panel",
309
+ "toroidal_mean_fluctuation",
310
+ "write_diverted_tokamak_analysis_json",
311
+ "write_diverted_tokamak_arrays_npz",
312
+ "EssosFieldLineImportArtifacts",
313
+ "build_essos_fieldline_import_report",
314
+ "create_essos_fieldline_import_package",
315
+ "save_essos_fieldline_import_plot",
316
+ "EssosVmecFieldlineSurfaceArtifacts",
317
+ "build_essos_vmec_fieldline_surface_campaign",
318
+ "create_essos_vmec_fieldline_surface_package",
319
+ "save_essos_vmec_fieldline_surface_plot",
320
+ "EssosVmecClosedFieldArtifacts",
321
+ "EssosVmecClosedFieldDryRunArtifacts",
322
+ "build_essos_vmec_closed_field_report",
323
+ "create_essos_vmec_closed_field_dry_run_package",
324
+ "create_essos_vmec_closed_field_package",
325
+ "save_essos_vmec_closed_field_plot",
326
+ "EssosVmecClosedFieldTransientArtifacts",
327
+ "EssosVmecClosedFieldTransientDryRunArtifacts",
328
+ "build_essos_vmec_closed_field_transient_campaign",
329
+ "create_essos_vmec_closed_field_transient_dry_run_package",
330
+ "create_essos_vmec_closed_field_transient_package",
331
+ "create_essos_vmec_closed_field_transient_package_from_geometry",
332
+ "save_essos_vmec_closed_field_transient_movie",
333
+ "save_essos_vmec_closed_field_transient_plot",
334
+ "EssosImportedConnectionLengthLevels",
335
+ "EssosImportedConnectionLengthRefinementArtifacts",
336
+ "EssosImportedEndpointLabelLevels",
337
+ "EssosImportedEndpointLabelRefinementArtifacts",
338
+ "EssosImportedFciCampaignArtifacts",
339
+ "build_essos_imported_connection_length_refinement_campaign",
340
+ "build_essos_imported_connection_length_refinement_diagnostics",
341
+ "build_essos_imported_endpoint_label_refinement_campaign",
342
+ "build_essos_imported_endpoint_label_refinement_diagnostics",
343
+ "build_essos_imported_fci_campaign",
344
+ "build_essos_imported_fci_source_profile_gate",
345
+ "build_live_essos_imported_endpoint_label_levels",
346
+ "build_live_essos_imported_connection_length_levels",
347
+ "create_essos_imported_connection_length_refinement_package",
348
+ "create_essos_imported_endpoint_label_refinement_package",
349
+ "create_essos_imported_fci_campaign_package",
350
+ "create_live_essos_imported_connection_length_refinement_package",
351
+ "create_live_essos_imported_endpoint_label_refinement_package",
352
+ "save_essos_imported_endpoint_label_refinement_plot",
353
+ "save_essos_imported_connection_length_refinement_plot",
354
+ "save_essos_imported_fci_campaign_plot",
355
+ "save_essos_imported_fci_source_profile_gate_plot",
356
+ "VmecExtenderEdgeFieldCampaignArtifacts",
357
+ "build_vmec_extender_edge_field_campaign_report",
358
+ "create_vmec_extender_edge_field_campaign_package",
359
+ "save_vmec_extender_edge_field_campaign_plot",
360
+ "VmecExtenderSolSmokeArtifacts",
361
+ "VmecExtenderSolSmokeResult",
362
+ "build_vmec_extender_sol_smoke_report",
363
+ "create_vmec_extender_sol_smoke_package",
364
+ "save_vmec_extender_sol_smoke_plot",
365
+ "simulate_vmec_extender_scalar_sol_smoke",
366
+ "LineoutSpec",
367
+ "SliceSpec",
368
+ "build_lineout_report",
369
+ "build_slice_report",
370
+ "save_slice_gif",
371
+ "save_slice_summary_plot",
372
+ "save_lineout_summary_plot",
373
+ "write_lineout_arrays_npz",
374
+ "write_slice_arrays_npz",
375
+ "write_slice_report_json",
376
+ "StellaratorFciGeometryCampaignArtifacts",
377
+ "build_stellarator_fci_geometry_report",
378
+ "create_stellarator_fci_geometry_campaign_package",
379
+ "save_stellarator_fci_geometry_plot",
380
+ "StellaratorFciOperatorCampaignArtifacts",
381
+ "build_stellarator_fci_operator_campaign",
382
+ "create_stellarator_fci_operator_campaign_package",
383
+ "save_stellarator_fci_operator_plot",
384
+ "StellaratorMetricMmsCampaignArtifacts",
385
+ "build_stellarator_metric_mms_campaign",
386
+ "create_stellarator_metric_mms_campaign_package",
387
+ "save_stellarator_metric_mms_plot",
388
+ "StellaratorFciSuiteCampaignArtifacts",
389
+ "build_stellarator_fci_suite_campaign",
390
+ "create_stellarator_fci_suite_campaign_package",
391
+ "save_stellarator_fci_suite_plot",
392
+ "StellaratorSheathRecyclingCampaignArtifacts",
393
+ "build_stellarator_sheath_recycling_campaign",
394
+ "create_stellarator_sheath_recycling_campaign_package",
395
+ "save_stellarator_sheath_recycling_plot",
396
+ "StellaratorNeutralPhysicsCampaignArtifacts",
397
+ "build_stellarator_neutral_physics_campaign",
398
+ "create_stellarator_neutral_physics_campaign_package",
399
+ "save_stellarator_neutral_physics_plot",
400
+ "StellaratorVorticityCampaignArtifacts",
401
+ "build_stellarator_vorticity_campaign",
402
+ "create_stellarator_vorticity_campaign_package",
403
+ "save_stellarator_vorticity_plot",
404
+ "StellaratorDrbPytreeCampaignArtifacts",
405
+ "build_stellarator_drb_pytree_campaign",
406
+ "create_stellarator_drb_pytree_campaign_package",
407
+ "initial_fci_drb_state",
408
+ "save_stellarator_drb_pytree_plot",
409
+ "StellaratorSolShowcaseArtifacts",
410
+ "build_stellarator_sol_showcase_report",
411
+ "create_stellarator_sol_showcase_package",
412
+ "save_stellarator_sol_3d_frame",
413
+ "save_stellarator_sol_3d_movie",
414
+ "save_stellarator_sol_diagnostics_panel",
415
+ "save_stellarator_sol_snapshot_panel",
416
+ "simulate_reduced_stellarator_sol_dynamics",
417
+ "RecyclingBatchedJvpProblem",
418
+ "build_recycling_batched_jvp_problem",
419
+ "create_recycling_batched_jvp_profile_package",
420
+ "profile_recycling_batched_jvp_problem",
421
+ ]
422
+
423
+ # Only export what actually imported (removed-model blocks stripped in the v2 slim).
424
+ __all__ = [name for name in __all__ if name in globals()]