.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/comparisons/compare_matrix_perturbation.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_comparisons_compare_matrix_perturbation.py: Matrix Perturbation Correlation Comparison ========================================== This example demonstrates how to generate a matrix comparison plot for the perturbation correlation method (described in :ref:`sphx_glr_auto_examples_matrix_plot_matrix_of_perturbation_plots.py` and :ref:`sphx_glr_auto_examples_correlation_plot_perturbation_correlation_plot.py`). This example compares the calculated correlation correlation coefficient to the TSUNAMI-IP calculated :math:`c_k` value for a set of dummy SDFs taken becuase they only use cross sections available in the dummy 56 group library. **Note** before running this example, please ensure that the necessary cross section libraries are cached by running the :ref:`sphx_glr_auto_examples_correlation_plot_perturbation_correlation_plot.py` example.) .. GENERATED FROM PYTHON SOURCE LINES 13-18 Getting TSUNAMI-IP :math:`c_k` Values ------------------------------------- First, we need to get the TSUNAMI-IP :math:`c_k` values for the experiment and application SDFs we want to compare. We can do this by using the :func:`tsunami_ip_utils.integral_indices.get_integral_indices` function, as shown in :ref:`sphx_glr_auto_examples_integral_index_reader.py`. .. GENERATED FROM PYTHON SOURCE LINES 18-30 .. code-block:: Python from tsunami_ip_utils.integral_indices import get_integral_indices from paths import EXAMPLES application_sdfs = [ EXAMPLES / 'data' / 'example_sdfs' / 'u235-dummy' / f'sphere_model_{i}.sdf' for i in range(1, 4) ] experiment_sdfs = application_sdfs # Get the TSUNAMI-IP integral indices coverx_library = '56groupcov7.1' integral_indices = get_integral_indices(application_sdfs, experiment_sdfs, coverx_library=coverx_library) c_k = integral_indices['c_k'] .. GENERATED FROM PYTHON SOURCE LINES 31-36 Generating the Comparison ------------------------- A matrix comparison plot comparing the computed correlation coefficient to the TSUNAMI-IP :math:`c_k` values can be generated using the :func:`tsunami_ip_utils.comparisons.correlation_comparison` function. Note this function is used to compare any method for computing any of the available TSUNAMI-IP integral indices (:math:`E` and :math:`c_k`). .. GENERATED FROM PYTHON SOURCE LINES 36-44 .. code-block:: Python from pathlib import Path from tsunami_ip_utils.comparisons import correlation_comparison # Define paths used for generating cross section perturbations multigroup_library = EXAMPLES / 'data' / 'dummy_56_v7.1' perturbation_factors = Path("~/codes/SCALE-6.3.1/data/perturb/56n.v7.1") .. GENERATED FROM PYTHON SOURCE LINES 45-48 50 Points --------- First, we'll generate a comparison for 50 points .. GENERATED FROM PYTHON SOURCE LINES 48-64 .. code-block:: Python num_perturbations = 50 comparisons, fig = correlation_comparison( integral_index_matrix=c_k, integral_index_name='c_k', application_files=application_sdfs, experiment_files=experiment_sdfs, method='perturbation', base_library=multigroup_library, perturbation_factors=perturbation_factors, num_perturbations=num_perturbations, ) fig.show() print(comparisons) .. raw:: html
.. rst-class:: sphx-glr-script-out .. code-block:: none Generating perturbation points: 0%| | 0/50 [00:00
.. rst-class:: sphx-glr-script-out .. code-block:: none Generating perturbation points: 0%| | 0/200 [00:00` for details). .. GENERATED FROM PYTHON SOURCE LINES 105-106 These plots can also be saved to an image .. GENERATED FROM PYTHON SOURCE LINES 106-123 .. code-block:: Python comparisons, fig = correlation_comparison( integral_index_matrix=c_k, integral_index_name='c_k', application_files=application_sdfs, experiment_files=experiment_sdfs, method='perturbation', base_library=multigroup_library, perturbation_factors=perturbation_factors, num_perturbations=num_perturbations, plot_objects_kwargs={'plot_type': 'scatter'}, matrix_plot_kwargs={'labels': labels} ) fig.to_image( EXAMPLES / '_static' / 'perturbation_matrix_comparison.png' ) # sphinx_gallery_thumbnail_path = '../../examples/_static/perturbation_matrix_comparison.png' .. raw:: html
.. rst-class:: sphx-glr-script-out .. code-block:: none Generating perturbation points: 0%| | 0/200 [00:00` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: compare_matrix_perturbation.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: compare_matrix_perturbation.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_