visualization.plots¶
plots ¶
High-resolution plot generation for all monograph results.
Generates each plot as a SEPARATE file (no subplot blocks): - 600 DPI PNG for screen/documents - PDF for vector publication - SVG for web
Plot types
- Spinor phase diagram
- Eigenvalue landscape (delta_C sweep)
- 64 spinor structure heatmap
- QNM frequency comparison
- Deviation analysis
- Convergence diagram
- Lambda_1 sweep
- Surface comparison
PlotGenerator ¶
Generate all publication-quality plots.
Each plot is saved as a separate file in both 600 DPI PNG and PDF/SVG.
Source code in src/visualization/plots.py
spinor_phase_diagram ¶
Plot spinor phases on the unit circle.
Source code in src/visualization/plots.py
eigenvalue_landscape ¶
Plot delta_C sweep showing eigenvalue landscape.
Source code in src/visualization/plots.py
structure_heatmap ¶
Plot 64 spinor structures as a heatmap of deviations.
Source code in src/visualization/plots.py
qnm_comparison ¶
Plot QNM frequency predictions vs observations.
Source code in src/visualization/plots.py
deviation_analysis ¶
Plot deviation analysis for b-C, base, full, b_Ch.
Source code in src/visualization/plots.py
convergence_diagram ¶
Plot convergence of the Choptyuk series.
Source code in src/visualization/plots.py
lambda_1_sweep ¶
Plot lambda_1 sweep results.
Source code in src/visualization/plots.py
surface_comparison ¶
Plot comparison across different surfaces.
Source code in src/visualization/plots.py
generate_all ¶
Generate all plots from verification and simulation results.
Returns:
| Type | Description |
|---|---|
list[str]
|
List of all saved file paths. |
Source code in src/visualization/plots.py
generate_enhanced_plots ¶
Generate all enhanced visualization figures.
Produces plots for the enhanced verification module including
- QNM correction factor diagram
- K3 surface Betti number comparison
- Tyukovsky echo period shift
- Criticism response (b₂ uniqueness) bar chart
- Spin structure distribution pie chart
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
enhanced_results
|
dict | None
|
Dict from enhanced_verification.verify_all(). If None, runs verification automatically. |
None
|
Returns:
| Type | Description |
|---|---|
list[str]
|
List of all saved file paths. |
Source code in src/visualization/plots.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | |