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.
- drbx/__init__.py +20 -0
- drbx/__main__.py +5 -0
- drbx/cli.py +586 -0
- drbx/config/__init__.py +20 -0
- drbx/config/boutinp.py +556 -0
- drbx/config/model.py +34 -0
- drbx/config/normalization.py +66 -0
- drbx/data/atomic_rates/__init__.py +1 -0
- drbx/data/atomic_rates/iz_AMJUEL_H.x_2.1.5.json +213 -0
- drbx/data/atomic_rates/iz_AMJUEL_H.x_2.3.9a.json +213 -0
- drbx/data/atomic_rates/rec_AMJUEL_H.x_2.1.8.json +213 -0
- drbx/data/atomic_rates/rec_AMJUEL_H.x_2.3.13a.json +213 -0
- drbx/geometry/__init__.py +207 -0
- drbx/geometry/embedding.py +56 -0
- drbx/geometry/essos_import.py +1385 -0
- drbx/geometry/fci_geometry.py +4622 -0
- drbx/geometry/fci_maps.py +85 -0
- drbx/geometry/island_divertor.py +291 -0
- drbx/geometry/metric_tensor.py +99 -0
- drbx/geometry/open_slab.py +150 -0
- drbx/geometry/rotating_ellipse.py +253 -0
- drbx/geometry/shifted_torus.py +225 -0
- drbx/geometry/stellarator.py +287 -0
- drbx/geometry/vmec_extender_import.py +499 -0
- drbx/geometry/vmec_jax_import.py +306 -0
- drbx/linear/__init__.py +37 -0
- drbx/linear/dispersion.py +138 -0
- drbx/linear/eigen.py +91 -0
- drbx/native/__init__.py +224 -0
- drbx/native/array_backend.py +64 -0
- drbx/native/deck_runner.py +779 -0
- drbx/native/electromagnetic.py +250 -0
- drbx/native/expression.py +173 -0
- drbx/native/fci.py +295 -0
- drbx/native/fci_2_field_rhs.py +182 -0
- drbx/native/fci_4_field_rhs.py +1267 -0
- drbx/native/fci_boundaries.py +2494 -0
- drbx/native/fci_differentiable_case.py +304 -0
- drbx/native/fci_drb_EB_rhs.py +1243 -0
- drbx/native/fci_drb_rhs.py +190 -0
- drbx/native/fci_halo.py +1575 -0
- drbx/native/fci_helpers.py +350 -0
- drbx/native/fci_model.py +294 -0
- drbx/native/fci_neutral.py +139 -0
- drbx/native/fci_operators.py +4081 -0
- drbx/native/fci_sharding.py +597 -0
- drbx/native/fci_sheath_recycling.py +206 -0
- drbx/native/fci_time_integrator.py +96 -0
- drbx/native/fci_vorticity.py +198 -0
- drbx/native/fluid_1d.py +330 -0
- drbx/native/hasegawa_wakatani.py +196 -0
- drbx/native/limiters.py +57 -0
- drbx/native/mesh.py +238 -0
- drbx/native/metrics.py +234 -0
- drbx/native/neutrals/__init__.py +58 -0
- drbx/native/neutrals/atomic_rates.py +134 -0
- drbx/native/neutrals/detachment_sol_model.py +221 -0
- drbx/native/neutrals/reactions.py +164 -0
- drbx/native/neutrals/recycling_sol_model.py +197 -0
- drbx/native/sol_flux_tube.py +133 -0
- drbx/native/stellarator_turbulence.py +343 -0
- drbx/native/transport.py +134 -0
- drbx/native/units.py +32 -0
- drbx/native/vorticity.py +252 -0
- drbx/runtime/__init__.py +53 -0
- drbx/runtime/artifacts.py +161 -0
- drbx/runtime/memory.py +144 -0
- drbx/runtime/output.py +374 -0
- drbx/runtime/paths.py +9 -0
- drbx/runtime/performance.py +161 -0
- drbx/runtime/run_config.py +184 -0
- drbx/runtime/scheduler.py +99 -0
- drbx/runtime/state.py +40 -0
- drbx/validation/__init__.py +424 -0
- drbx/validation/autodiff_diffusion.py +329 -0
- drbx/validation/autodiff_diffusion_uncertainty.py +235 -0
- drbx/validation/diverted_tokamak_movie.py +558 -0
- drbx/validation/essos_fieldline_import_campaign.py +181 -0
- drbx/validation/essos_imported_artifact_audit.py +535 -0
- drbx/validation/essos_imported_drb_movie_campaign.py +2826 -0
- drbx/validation/essos_imported_fci_campaign.py +5241 -0
- drbx/validation/essos_imported_pytree_campaign.py +406 -0
- drbx/validation/essos_vmec_closed_field_campaign.py +314 -0
- drbx/validation/essos_vmec_closed_field_transient_campaign.py +629 -0
- drbx/validation/essos_vmec_fieldline_surface_campaign.py +620 -0
- drbx/validation/fluid_1d_mms_convergence.py +250 -0
- drbx/validation/geometry_lineouts.py +136 -0
- drbx/validation/geometry_slices.py +178 -0
- drbx/validation/publication_plotting.py +91 -0
- drbx/validation/stellarator_drb_pytree_campaign.py +621 -0
- drbx/validation/stellarator_fci_geometry_campaign.py +200 -0
- drbx/validation/stellarator_fci_operator_campaign.py +304 -0
- drbx/validation/stellarator_fci_suite_campaign.py +264 -0
- drbx/validation/stellarator_metric_mms_campaign.py +289 -0
- drbx/validation/stellarator_neutral_physics_campaign.py +255 -0
- drbx/validation/stellarator_sheath_recycling_campaign.py +331 -0
- drbx/validation/stellarator_sol_showcase.py +628 -0
- drbx/validation/stellarator_vorticity_campaign.py +304 -0
- drbx/validation/vmec_extender_edge_field_campaign.py +260 -0
- drbx/validation/vmec_extender_sol_smoke_campaign.py +365 -0
- drbx-2.0.0.dev0.dist-info/METADATA +380 -0
- drbx-2.0.0.dev0.dist-info/RECORD +106 -0
- drbx-2.0.0.dev0.dist-info/WHEEL +5 -0
- drbx-2.0.0.dev0.dist-info/entry_points.txt +2 -0
- drbx-2.0.0.dev0.dist-info/licenses/LICENSE +21 -0
- 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()]
|