{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualize the exchange" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we receive a new calculation from someone, usually it is easier to quickly look at some figures and aggregated data to figure out what is going on, than reading the system parameters from the simulation files. For this purpuse grogupy has a few tools to quickly and efficiently visualize the basic informations and print a summary of the calculation." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First import grogupy, which will import the most important classes, functions and variables in its namespace." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/danielpozsar/Documents/studies/elte/phd/grogu/.venv/lib/python3.12/site-packages/grogupy/_tqdm.py:39: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n", " from tqdm.autonotebook import tqdm\n" ] }, { "data": { "text/html": [ " \n", " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import grogupy\n", "\n", "################################################################################\n", "# this is just for the html export of interactive figures, but it is not part of\n", "# grogupy\n", "import plotly\n", "\n", "plotly.offline.init_notebook_mode()\n", "################################################################################" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The most useful format for post-processing is the **.pkl** format, because you can load the ``grogupy.Builder`` instance. Depending on the compression level you can do everything with it that is done in the **Calculate magnetic parameters** tutorial or just some basic plotting and convenient data accesing. Let's suppose for now, that we got a maximally compressed ``Builder`` instance in a **.pkl** format. All the compression levels can be loaded the same way." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "system = grogupy.load(\n", " \"./../../../benchmarks/CrI3/grogupy_tests/CrI3_kset_11_11_1_eset_50_generalised-grogu.pkl\"\n", ")\n", "system" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can look at the representations of the instance, to get a feeling of the system. " ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "system.kspace" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "system.contour" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "system.magnetic_entities" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "system.pairs" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Or get a concise summary of the simulation." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "========================================\n", "grogupy version: 0.2.1\n", "Input file: ./benchmarks/CrI3/CrI3.fdf\n", "Spin mode: SPIN-ORBIT\n", "Number of orbitals: 216\n", "========================================\n", "SLURM job ID: Could not be determined.\n", "Architecture: CPU\n", "Number of threads in the parallel cluster: 1\n", "Parallelization is over: K\n", "Solver used for Greens function calculation: Parallel\n", "Maximum number of Greens function samples per batch: 50\n", "Spin model: generalised-grogu\n", "========================================\n", "Cell [Ang]:\n", "7.065064198869267287e+00 0.000000000000000000e+00 0.000000000000000000e+00\n", "-3.532532099434633643e+00 6.118525069037334951e+00 0.000000000000000000e+00\n", "0.000000000000000000e+00 0.000000000000000000e+00 3.000000000000000000e+01\n", "========================================\n", "DFT axis: [0 0 1]\n", "Quantization axis and perpendicular rotation directions:\n", "[1 0 0] --> [[ 0. 0. -1. ]\n", " [ 0. 1. 0. ]\n", " [ 0. 0.70710678 -0.70710678]]\n", "[0 1 0] --> [[ 1. 0. 0. ]\n", " [ 0. 0. -1. ]\n", " [ 0.70710678 0. -0.70710678]]\n", "[0 0 1] --> [[1. 0. 0. ]\n", " [0. 1. 0. ]\n", " [0.70710678 0.70710678 0. ]]\n", "========================================\n", "Parameters for the Brillouin zone sampling:\n", "Number of k points: 121\n", "K points in each directions: [11 11 1]\n", "Parameters for the contour integral:\n", "Eset: 50\n", "Esetp: 600\n", "Ebot: -18.28197461 WARNING: This was automatically determined!\n", "Etop: 0\n", "========================================\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/Users/danielpozsar/Documents/studies/elte/phd/grogu/.venv/lib/python3.12/site-packages/grogupy/physics/hamiltonian.py:235: UserWarning:\n", "\n", "Property could not be calculated. This is only acceptable for loaded Hamiltonian!\n", "\n", "/Users/danielpozsar/Documents/studies/elte/phd/grogu/.venv/lib/python3.12/site-packages/grogupy/physics/hamiltonian.py:245: UserWarning:\n", "\n", "Property could not be calculated. This is only acceptable for loaded Hamiltonian!\n", "\n" ] } ], "source": [ "print(system)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's visualize the contour and the Brilloun zone sampling, but first we have to import ``grogupy.viz`` for this." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "markers", "type": "scatter", "x": { "bdata": "7j4ho/lHMsBwWyljdkIywHKZghzjJjLAHaBOIKnbMcDvWesGuEUxwAgaTMxbUTDAAIqN15nzLcBKV/J295gqwBYlAR0ezSbAWr6D0TnbIsByMjrPvRoewNLSDozIOxfAJUv4VA1gEcCoUAqg+D8JwGpzWXsu4AHAKEQFl766+L+Y9pyaAMLwv8DFxqlaTua/wA5kbaI63b9A9RiWmOTSvwDfEDvbJMi/gOd73MWOvr8AH4ycXC+zvwCvMJZE8Ke/AAoA7Sa6nb8ADD8+IGWSvwBY98ppt4a/AFgi8/AFfL8A+DVaOEhxvwBAJfXZU2W/AABXraNYWr8AIAKOzEpQvwAAYFa/K0S/AIAxTKv8OL8AAId0U/EuvwAAOW1lICO/AAB8W3ePF78AAIBLFtgMvwAAENI4fQG/AAAY7Gfq9L4AAADcuYbovgAAwEAB/Nu+AABAe82+zr4AAEATPgbAvgAAACaCA6++AAAARPTsmr4AAACEmsiDvgAAAHB2+mW+AAAAANw/PL4AAAAAGAPwvQ==", "dtype": "f8" }, "y": { "bdata": "l5KUNkNgvz+z2pwz83HkP2tq1bnKlfg/xm/eOPgCBkBI3WywMrQQQPP1U4A5pRZA2F5bGWklHEAr4a88BkggQP6Yh5zvtiFARXKMBuBFIkB6wdSnkv4hQH0zWa0PBiFANiO2FsofH0DlUMv5RKMbQJgRZrTV8xdA9H+rGRZYFEA31rxzmv4QQL2UraBJAgxAxMRrXmXTBkB4ptr7LW8CQBvmIvrpjv0/pI2bcwCP9z/n8ws4i7DyPxXqC+sijO0/K4g1VkBL5z94FLmNU1TiP2j8jvy6z9w/EkRXiVeh1j/DrWLV4MXRP/GO0npa7Ms/sB1EVCHyxT/pu7p8CULBPxy99PkwKLs/NcXgFHhftT8APyFKZNGwP3PYcqzpcao/1iQjlAbBpD94LSlw2TygP6ML4xmrSZk//ZWkfPSNkz8d9hpMPPKNP7uFhTdpnoY/T19FuKrDgD/J7HsmpzR4PwxjS55b1nA/zX+qwNAvZj9GenclPuVaPwjID3weWUw/L03JGcW5Nj8U9WzLBBwRPw==", "dtype": "f8" } } ], "layout": { "autosize": false, "height": 500, "legend": { "x": 1, "xanchor": "right", "y": 1 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Energy contour integral" }, "width": 1000, "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Real axis [eV]" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Imaginary axis [eV]" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "marker": { "color": { "bdata": "kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD+QnOZr9eyAP5Cc5mv17IA/kJzma/XsgD8=", "dtype": "f8" }, "colorbar": { "title": { "text": "Weights of kpoints" }, "x": 0.75 }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "opacity": 1, "size": 5 }, "mode": "markers", "name": "Kpoints", "type": "scatter3d", "x": { "bdata": "F1100UUX3b9GF1100UXXv3TRRRdddNG/RhdddNFFx79GF1100UW3vwAAAAAAAAAARhdddNFFtz9GF1100UXHP3TRRRdddNE/RhdddNFF1z8XXXTRRRfdPxdddNFFF92/RhdddNFF17900UUXXXTRv0YXXXTRRce/RhdddNFFt78AAAAAAAAAAEYXXXTRRbc/RhdddNFFxz900UUXXXTRP0YXXXTRRdc/F1100UUX3T8XXXTRRRfdv0YXXXTRRde/dNFFF1100b9GF1100UXHv0YXXXTRRbe/AAAAAAAAAABGF1100UW3P0YXXXTRRcc/dNFFF1100T9GF1100UXXPxdddNFFF90/F1100UUX3b9GF1100UXXv3TRRRdddNG/RhdddNFFx79GF1100UW3vwAAAAAAAAAARhdddNFFtz9GF1100UXHP3TRRRdddNE/RhdddNFF1z8XXXTRRRfdPxdddNFFF92/RhdddNFF17900UUXXXTRv0YXXXTRRce/RhdddNFFt78AAAAAAAAAAEYXXXTRRbc/RhdddNFFxz900UUXXXTRP0YXXXTRRdc/F1100UUX3T8XXXTRRRfdv0YXXXTRRde/dNFFF1100b9GF1100UXHv0YXXXTRRbe/AAAAAAAAAABGF1100UW3P0YXXXTRRcc/dNFFF1100T9GF1100UXXPxdddNFFF90/F1100UUX3b9GF1100UXXv3TRRRdddNG/RhdddNFFx79GF1100UW3vwAAAAAAAAAARhdddNFFtz9GF1100UXHP3TRRRdddNE/RhdddNFF1z8XXXTRRRfdPxdddNFFF92/RhdddNFF17900UUXXXTRv0YXXXTRRce/RhdddNFFt78AAAAAAAAAAEYXXXTRRbc/RhdddNFFxz900UUXXXTRP0YXXXTRRdc/F1100UUX3T8XXXTRRRfdv0YXXXTRRde/dNFFF1100b9GF1100UXHv0YXXXTRRbe/AAAAAAAAAABGF1100UW3P0YXXXTRRcc/dNFFF1100T9GF1100UXXPxdddNFFF90/F1100UUX3b9GF1100UXXv3TRRRdddNG/RhdddNFFx79GF1100UW3vwAAAAAAAAAARhdddNFFtz9GF1100UXHP3TRRRdddNE/RhdddNFF1z8XXXTRRRfdPxdddNFFF92/RhdddNFF17900UUXXXTRv0YXXXTRRce/RhdddNFFt78AAAAAAAAAAEYXXXTRRbc/RhdddNFFxz900UUXXXTRP0YXXXTRRdc/F1100UUX3T8=", "dtype": "f8" }, "y": { "bdata": "F1100UUX3b8XXXTRRRfdvxdddNFFF92/F1100UUX3b8XXXTRRRfdvxdddNFFF92/F1100UUX3b8XXXTRRRfdvxdddNFFF92/F1100UUX3b8XXXTRRRfdv0YXXXTRRde/RhdddNFF179GF1100UXXv0YXXXTRRde/RhdddNFF179GF1100UXXv0YXXXTRRde/RhdddNFF179GF1100UXXv0YXXXTRRde/RhdddNFF17900UUXXXTRv3TRRRdddNG/dNFFF1100b900UUXXXTRv3TRRRdddNG/dNFFF1100b900UUXXXTRv3TRRRdddNG/dNFFF1100b900UUXXXTRv3TRRRdddNG/RhdddNFFx79GF1100UXHv0YXXXTRRce/RhdddNFFx79GF1100UXHv0YXXXTRRce/RhdddNFFx79GF1100UXHv0YXXXTRRce/RhdddNFFx79GF1100UXHv0YXXXTRRbe/RhdddNFFt79GF1100UW3v0YXXXTRRbe/RhdddNFFt79GF1100UW3v0YXXXTRRbe/RhdddNFFt79GF1100UW3v0YXXXTRRbe/RhdddNFFt78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARhdddNFFtz9GF1100UW3P0YXXXTRRbc/RhdddNFFtz9GF1100UW3P0YXXXTRRbc/RhdddNFFtz9GF1100UW3P0YXXXTRRbc/RhdddNFFtz9GF1100UW3P0YXXXTRRcc/RhdddNFFxz9GF1100UXHP0YXXXTRRcc/RhdddNFFxz9GF1100UXHP0YXXXTRRcc/RhdddNFFxz9GF1100UXHP0YXXXTRRcc/RhdddNFFxz900UUXXXTRP3TRRRdddNE/dNFFF1100T900UUXXXTRP3TRRRdddNE/dNFFF1100T900UUXXXTRP3TRRRdddNE/dNFFF1100T900UUXXXTRP3TRRRdddNE/RhdddNFF1z9GF1100UXXP0YXXXTRRdc/RhdddNFF1z9GF1100UXXP0YXXXTRRdc/RhdddNFF1z9GF1100UXXP0YXXXTRRdc/RhdddNFF1z9GF1100UXXPxdddNFFF90/F1100UUX3T8XXXTRRRfdPxdddNFFF90/F1100UUX3T8XXXTRRRfdPxdddNFFF90/F1100UUX3T8XXXTRRRfdPxdddNFFF90/F1100UUX3T8=", "dtype": "f8" }, "z": { "bdata": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", "dtype": "f8" } } ], "layout": { "autosize": false, "height": 500, "scene": { "aspectmode": "data", "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "X Axis" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Y Axis" } }, "zaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Z Axis" } } }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Brillouin zone sampling" }, "width": 1000 } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import grogupy.viz\n", "\n", "system.contour.plot(width=1000).show()\n", "system.kspace.plot(width=1000)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's look at the atomic positions of the magnetic entities." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "marker": { "color": "red", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "0Cr(l:2)", "type": "scatter3d", "x": { "bdata": "f6qQxTefC78=", "dtype": "f8" }, "y": { "bdata": "mt9RGp3R/z4=", "dtype": "f8" }, "z": { "bdata": "uooBAAAALkA=", "dtype": "f8" } }, { "marker": { "color": "green", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "1Cr(l:2)", "type": "scatter3d", "x": { "bdata": "/EUcALxCDEA=", "dtype": "f8" }, "y": { "bdata": "yybHqtlQAEA=", "dtype": "f8" }, "z": { "bdata": "C/hX////LUA=", "dtype": "f8" } } ], "layout": { "autosize": false, "height": 500, "scene": { "aspectmode": "data", "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "X Axis" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Y Axis" } }, "zaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Z Axis" } } }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 1000 } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "system.plot_magnetic_entities(width=1000)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we have a large system with many magnetic entities it can be useful to see all the pairs connected to the magnetic entities. We can interactively toggle them on and off in the figure and rotate the structure to have a better look." ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "marker": { "color": "red", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "Center:0Cr(l:2)", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417108 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -14.130181082417108 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.662713181851743 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -17.662713181851743 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113205 -18.355544862336377 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ -3.532584784113205 ], "y": [ -18.355544862336377 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66271318185174 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -17.66271318185174 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560623 -18.355544862336377 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 3.5324794147560623 ], "y": [ -18.355544862336377 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ -3.5325847841132068 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 17.662607812494596 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 3.5324794147560605 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 17.6626078124946 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 14.130075713059965 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -3 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -10.597543252872704 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -14.130075352307339 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66260745174197 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 0 0]", "type": "scatter3d", "x": [ -17.66260745174197 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ 0.00005304543119954985 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -14.130075352307335 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 7.065117244300467 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 0 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "marker": { "color": "green", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "Center:1Cr(l:2)", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 0 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ -3.5325847841132068 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 17.662607812494596 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 3.5324794147560605 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195139911929232 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 0 0]", "type": "scatter3d", "x": [ 21.195139911929232 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 17.6626078124946 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 14.130075713059965 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 3 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -10.597543252872704 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -14.130075352307339 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ 0.00005304543119954985 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -14.130075352307335 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 7.065117244300467 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431197773496e-05 20.395052874160097 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ 0.000053045431197773496 ], "y": [ 20.395052874160097 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642038998 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 21.195245642038998 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300465 20.395052874160097 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 7.065117244300465 ], "y": [ 20.395052874160097 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642039005 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 21.195245642039005 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.66271354260437 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 17.66271354260437 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, -3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 0 ], "y": [ 0, 0 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.065064198869267, 3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.065064198869267, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.5325320994346336, 3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.5325320994346336, -3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, -3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, 3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 30, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, 7.065064198869267 ], "y": [ 6.118525069037335, 0 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, -3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 30, 30 ] } ], "layout": { "autosize": false, "height": 500, "scene": { "aspectmode": "data", "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "X Axis" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Y Axis" } }, "zaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Z Axis" } } }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 1000 } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "system.plot_pairs(width=1000)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally we can look at the Dzyaloshinskii-Moriya interaction." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "vector_0", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.06511688354784, -7.065148372668802 ], "y": [ -6.118494724261708, -6.119016990629689 ], "z": [ 15.0000000001795, 14.99967020913578 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_0", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.000006297824192496024 ], "v": [ -0.00010445327359625464 ], "w": [ -0.00006595820874414395 ], "x": [ -7.065148372668802 ], "y": [ -6.119016990629689 ], "z": [ 14.99967020913578 ] }, { "legendgroup": "vector_1", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831382933265157, -8.83184572157796 ], "y": [ -3.0592321897430397, -3.0590502335325387 ], "z": [ 15.0000000001795, 15.000328471844604 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_1", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00009255766256056319 ], "v": [ 0.000036391242100155845 ], "w": [ 0.00006569433302074442 ], "x": [ -8.83184572157796 ], "y": [ -3.0590502335325387 ], "z": [ 15.000328471844604 ] }, { "legendgroup": "vector_2", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958884, -1.7667034091493927 ], "y": [ -9.177757258780375, -9.178031437347459 ], "z": [ 15.0000000001795, 14.999670264153387 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_2", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00007693495070087217 ], "v": [ -0.00005483571341675856 ], "w": [ -0.00006594720522260452 ], "x": [ -1.7667034091493927 ], "y": [ -9.178031437347459 ], "z": [ 14.999670264153387 ] }, { "legendgroup": "vector_3", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -3.5411608694103234 ], "y": [ -6.118494724261708, -6.133494669401818 ], "z": [ 15.0000000001795, 14.973217945216964 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_3", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0017152170594235446 ], "v": [ -0.002999989028022054 ], "w": [ -0.0053564109925071995 ], "x": [ -3.5411608694103234 ], "y": [ -6.133494669401818 ], "z": [ 14.973217945216964 ] }, { "legendgroup": "vector_4", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298850833830523, -5.238057371345421 ], "y": [ -3.0592321897430397, -3.022126655937841 ], "z": [ 15.0000000001795, 15.00052116884424 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_4", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.012158692497020361 ], "v": [ 0.007421106761039764 ], "w": [ 0.00010423373294801855 ], "x": [ -5.238057371345421 ], "y": [ -3.022126655937841 ], "z": [ 15.00052116884424 ] }, { "legendgroup": "vector_5", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065116883547839, -7.08274681549505 ], "y": [ 0.00003034477562777159, -0.0002469563988052253 ], "z": [ 15.0000000001795, 15.026577869729016 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_5", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0035259863894423404 ], "v": [ -0.000055460234886599375 ], "w": [ 0.005315573909902799 ], "x": [ -7.08274681549505 ], "y": [ -0.0002469563988052253 ], "z": [ 15.026577869729016 ] }, { "legendgroup": "vector_6", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831382933265155, -8.831850048604576 ], "y": [ 3.0592928792942953, 3.059103080476234 ], "z": [ 15.0000000001795, 15.00032200366491 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_6", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00009342306788396036 ], "v": [ -0.000037959763612234514 ], "w": [ 0.00006440069708192202 ], "x": [ -8.831850048604576 ], "y": [ 3.059103080476234 ], "z": [ 15.00032200366491 ] }, { "legendgroup": "vector_7", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387453, 1.7665921291601714 ], "y": [ -9.177757258780375, -9.178009275862983 ], "z": [ 15.0000000001795, 15.000328426785611 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_7", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00007575282428521722 ], "v": [ -0.000050403416521809785 ], "w": [ 0.00006568532122209996 ], "x": [ 1.7665921291601714 ], "y": [ -9.178009275862983 ], "z": [ 15.000328426785611 ] }, { "legendgroup": "vector_8", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -0.00005268467857207515, 0.0005379231083712224 ], "y": [ -6.118494724261708, -6.050608091143499 ], "z": [ 15.0000000001795, 15.00052500776554 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_8", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00011812155738865951 ], "v": [ 0.01357732662364169 ], "w": [ 0.00010500151720786985 ], "x": [ 0.0005379231083712224 ], "y": [ -6.050608091143499 ], "z": [ 15.00052500776554 ] }, { "legendgroup": "vector_9", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958888, -2.5666300397340276 ], "y": [ -3.0592321897430397, -4.3870727451253995 ], "z": [ 15.0000000001795, 14.939670048235897 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_9", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.16006226106762772 ], "v": [ -0.26556811107647194 ], "w": [ -0.012065990388721012 ], "x": [ -2.5666300397340276 ], "y": [ -4.3870727451253995 ], "z": [ 14.939670048235897 ] }, { "legendgroup": "vector_10", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -5.042713672781607 ], "y": [ 0.00003034477562777159, -0.004311341656519481 ], "z": [ 15.0000000001795, 15.03953688689662 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_10", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.3020257777336802 ], "v": [ -0.0008683372864294505 ], "w": [ 0.007907377343423864 ], "x": [ -5.042713672781607 ], "y": [ -0.004311341656519481 ], "z": [ 15.03953688689662 ] }, { "legendgroup": "vector_11", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298850833830523, -5.2384388117691465 ], "y": [ 3.0592928792942953, 3.0226249538990717 ], "z": [ 15.0000000001795, 14.999996075860707 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_11", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.012082404412275193 ], "v": [ -0.007333585079044702 ], "w": [ -7.848637585204356e-7 ], "x": [ -5.2384388117691465 ], "y": [ 3.0226249538990717 ], "z": [ 14.999996075860707 ] }, { "legendgroup": "vector_12", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065116883547839, -7.065141971299742 ], "y": [ 6.118555413812962, 6.119074089259752 ], "z": [ 15.0000000001795, 14.9996779885456 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_12", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.000005017550380566577 ], "v": [ 0.00010373508935786752 ], "w": [ -0.00006440232678023621 ], "x": [ -7.065141971299742 ], "y": [ 6.119074089259752 ], "z": [ 14.9996779885456 ] }, { "legendgroup": "vector_13", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 3.540833321942221 ], "y": [ -6.118494724261708, -6.133668836334048 ], "z": [ 15.0000000001795, 15.026575901184698 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_13", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0016707814372319014 ], "v": [ -0.003034822414468207 ], "w": [ 0.00531518020103945 ], "x": [ 3.540833321942221 ], "y": [ -6.133668836334048 ], "z": [ 15.026575901184698 ] }, { "legendgroup": "vector_14", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387448, 2.546832993006851 ], "y": [ -3.0592321897430397, -4.383511867403246 ], "z": [ 15.0000000001795, 15.0394090973728 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_14", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.15612392559362126 ], "v": [ -0.2648559355320412 ], "w": [ 0.007881819438659914 ], "x": [ 2.546832993006851 ], "y": [ -4.383511867403246 ], "z": [ 15.0394090973728 ] }, { "legendgroup": "vector_15", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958888, -2.546938362363993 ], "y": [ 3.0592928792942953, 4.383572556954513 ], "z": [ 15.0000000001795, 14.960590902986217 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_15", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.15612392559362087 ], "v": [ 0.26485593553204345 ], "w": [ -0.007881819438656661 ], "x": [ -2.546938362363993 ], "y": [ 4.383572556954513 ], "z": [ 14.960590902986217 ] }, { "legendgroup": "vector_16", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -3.5409386912993663 ], "y": [ 6.118555413812962, 6.133729525885302 ], "z": [ 15.0000000001795, 14.973424099174302 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_16", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0016707814372321002 ], "v": [ 0.003034822414467977 ], "w": [ -0.005315180201039564 ], "x": [ -3.5409386912993663 ], "y": [ 6.133729525885302 ], "z": [ 14.973424099174302 ] }, { "legendgroup": "vector_17", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.0650115141906955, 7.065036601942598 ], "y": [ -6.118494724261708, -6.119013399708497 ], "z": [ 15.0000000001795, 15.000322011813402 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_17", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.000005017550380557174 ], "v": [ -0.00010373508935789953 ], "w": [ 0.00006440232678023762 ], "x": [ 7.065036601942598 ], "y": [ -6.119013399708497 ], "z": [ 15.000322011813402 ] }, { "legendgroup": "vector_18", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298745464473379, 5.238333442412003 ], "y": [ -3.0592321897430397, -3.022564264347816 ], "z": [ 15.0000000001795, 15.000003924498293 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_18", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.012082404412275316 ], "v": [ 0.007333585079044709 ], "w": [ 7.848637584915836e-7 ], "x": [ 5.238333442412003 ], "y": [ -3.022564264347816 ], "z": [ 15.000003924498293 ] }, { "legendgroup": "vector_19", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 5.042608303424467 ], "y": [ 0.00003034477562777159, 0.0043720312077733985 ], "z": [ 15.0000000001795, 14.960463113462392 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_19", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.3020257777336811 ], "v": [ 0.0008683372864291253 ], "w": [ -0.007907377343421682 ], "x": [ 5.042608303424467 ], "y": [ 0.0043720312077733985 ], "z": [ 14.960463113462392 ] }, { "legendgroup": "vector_20", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387448, 2.5665246703768854 ], "y": [ 3.0592928792942953, 4.387133434676661 ], "z": [ 15.0000000001795, 15.0603299521231 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_20", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.1600622610676281 ], "v": [ 0.2655681110764731 ], "w": [ 0.012065990388719914 ], "x": [ 2.5665246703768854 ], "y": [ 4.387133434676661 ], "z": [ 15.0603299521231 ] }, { "legendgroup": "vector_21", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -0.00005268467857207515, -0.0006432924655152745 ], "y": [ 6.118555413812962, 6.050668780694754 ], "z": [ 15.0000000001795, 14.999474992593463 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_21", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00011812155738863987 ], "v": [ -0.013577326623641615 ], "w": [ -0.00010500151720778568 ], "x": [ -0.0006432924655152745 ], "y": [ 6.050668780694754 ], "z": [ 14.999474992593463 ] }, { "legendgroup": "vector_22", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958893, -1.7666974985173154 ], "y": [ 9.17781794833163, 9.178069965414238 ], "z": [ 15.0000000001795, 14.99967157357339 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_22", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00007575282428523245 ], "v": [ 0.00005040341652179539 ], "w": [ -0.00006568532122211357 ], "x": [ -1.7666974985173154 ], "y": [ 9.178069965414238 ], "z": [ 14.99967157357339 ] }, { "legendgroup": "vector_23", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831277563908012, 8.831744679247432 ], "y": [ -3.0592321897430397, -3.0590423909249784 ], "z": [ 15.0000000001795, 14.999677996694091 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_23", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00009342306788396728 ], "v": [ 0.000037959763612236594 ], "w": [ -0.00006440069708191206 ], "x": [ 8.831744679247432 ], "y": [ -3.0590423909249784 ], "z": [ 14.999677996694091 ] }, { "legendgroup": "vector_24", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.0650115141906955, 7.082641446137907 ], "y": [ 0.00003034477562777159, 0.0003076459500604673 ], "z": [ 15.0000000001795, 14.973422130629986 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_24", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00352598638944231 ], "v": [ 0.00005546023488653914 ], "w": [ -0.005315573909902788 ], "x": [ 7.082641446137907 ], "y": [ 0.0003076459500604673 ], "z": [ 14.973422130629986 ] }, { "legendgroup": "vector_25", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298745464473379, 5.237952001988278 ], "y": [ 3.0592928792942953, 3.0221873454890966 ], "z": [ 15.0000000001795, 14.999478831514761 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_25", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.012158692497020313 ], "v": [ -0.007421106761039768 ], "w": [ -0.00010423373294795055 ], "x": [ 5.237952001988278 ], "y": [ 3.0221873454890966 ], "z": [ 14.999478831514761 ] }, { "legendgroup": "vector_26", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 3.541055500053179 ], "y": [ 6.118555413812962, 6.133555358953072 ], "z": [ 15.0000000001795, 15.026782055142036 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_26", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.001715217059423502 ], "v": [ 0.0029999890280220185 ], "w": [ 0.005356410992507116 ], "x": [ 3.541055500053179 ], "y": [ 6.133555358953072 ], "z": [ 15.026782055142036 ] }, { "legendgroup": "vector_27", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387444, 1.7665980397922487 ], "y": [ 9.17781794833163, 9.178092126898713 ], "z": [ 15.0000000001795, 15.000329736205614 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_27", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00007693495070086763 ], "v": [ 0.0000548357134167518 ], "w": [ 0.00006594720522261001 ], "x": [ 1.7665980397922487 ], "y": [ 9.178092126898713 ], "z": [ 15.000329736205614 ] }, { "legendgroup": "vector_28", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831277563908014, 8.831740352220816 ], "y": [ 3.0592928792942953, 3.0591109230837943 ], "z": [ 15.0000000001795, 14.999671528514398 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_28", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00009255766256056884 ], "v": [ -0.00003639124210016352 ], "w": [ -0.00006569433302075503 ], "x": [ 8.831740352220816 ], "y": [ 3.0591109230837943 ], "z": [ 14.999671528514398 ] }, { "legendgroup": "vector_29", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065011514190696, 7.065043003311659 ], "y": [ 6.118555413812962, 6.1190776801809434 ], "z": [ 15.0000000001795, 15.000329791223221 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_29", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0000062978241924946475 ], "v": [ 0.0001044532735962357 ], "w": [ 0.00006595820874415802 ], "x": [ 7.065043003311659 ], "y": [ 6.1190776801809434 ], "z": [ 15.000329791223221 ] }, { "legendgroup": "vector_30", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.532531963430441 ], "y": [ -8.158033597644142, -8.158033683894745 ], "z": [ 14.999999990309053, 15.000000081630583 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_30", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -8.8744240493068e-9 ], "v": [ -1.7250120533410142e-8 ], "w": [ 1.8264305832659386e-8 ], "x": [ -3.532531963430441 ], "y": [ -8.158033683894745 ], "z": [ 15.000000081630583 ] }, { "legendgroup": "vector_31", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775638, -5.29879913799045 ], "y": [ -5.098771063125474, -5.09877205911142 ], "z": [ 14.999999990309053, 15.000000426761599 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_31", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.3384296249741796e-7 ], "v": [ -1.9919718927264932e-7 ], "w": [ 8.729050890931853e-8 ], "x": [ -5.29879913799045 ], "y": [ -5.09877205911142 ], "z": [ 15.000000426761599 ] }, { "legendgroup": "vector_32", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065064018492955, -7.065063378790839 ], "y": [ -2.0395085286068064, -2.039508378280961 ], "z": [ 14.999999990309053, 15.000000215666917 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_32", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 1.2794042324196244e-7 ], "v": [ 3.006516910356852e-8 ], "w": [ 4.507157295359054e-8 ], "x": [ -7.065063378790839 ], "y": [ -2.039508378280961 ], "z": [ 15.000000215666917 ] }, { "legendgroup": "vector_33", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831330068210272, -8.831329938628869 ], "y": [ 1.019754005911861, 1.0197542759470686 ], "z": [ 14.999999990309053, 15.000000102590398 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_33", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.591628059516454e-8 ], "v": [ 5.4007041521611927e-8 ], "w": [ 2.245626895570978e-8 ], "x": [ -8.831329938628869 ], "y": [ 1.0197542759470686 ], "z": [ 15.000000102590398 ] }, { "legendgroup": "vector_34", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631366318863e-7, 2.230511646849555e-8 ], "y": [ -8.158033597644142, -8.158033645111427 ], "z": [ 14.999999990309053, 15.000000236049216 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_34", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -3.1614239438938615e-8 ], "v": [ -9.493457149741827e-9 ], "w": [ 4.9148032416548286e-8 ], "x": [ 2.230511646849555e-8 ], "y": [ -8.158033645111427 ], "z": [ 15.000000236049216 ] }, { "legendgroup": "vector_35", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.766272161428755 ], "y": [ -5.098771063125474, -5.098772918078883 ], "z": [ 14.999999990309053, 14.999997682555914 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_35", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.000001258417550279852 ], "v": [ -3.7099068187320955e-7 ], "w": [ -4.6155062768688665e-7 ], "x": [ -1.766272161428755 ], "y": [ -5.098772918078883 ], "z": [ 14.999997682555914 ] }, { "legendgroup": "vector_36", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325309776876486 ], "y": [ -2.0395085286068064, -2.039502952570602 ], "z": [ 14.999999990309053, 15.000023834432776 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_36", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 1.8827413439791315e-7 ], "v": [ 0.0000011152072408407725 ], "w": [ 0.000004768824744680799 ], "x": [ -3.5325309776876486 ], "y": [ -2.039502952570602 ], "z": [ 15.000023834432776 ] }, { "legendgroup": "vector_37", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.298799105452889 ], "y": [ 1.019754005911861, 1.0197494133954528 ], "z": [ 14.999999990309053, 14.99999805032775 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_37", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.2733545040523367e-7 ], "v": [ -9.185032816705961e-7 ], "w": [ -3.879962604788327e-7 ], "x": [ -5.298799105452889 ], "y": [ 1.0197494133954528 ], "z": [ 14.99999805032775 ] }, { "legendgroup": "vector_38", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065064018492953, -7.065063744229777 ], "y": [ 4.079016540430528, 4.079016184604144 ], "z": [ 14.999999990309053, 15.000000160372249 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_38", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 5.485263539999386e-8 ], "v": [ -7.116527678724988e-8 ], "w": [ 3.4012639144303725e-8 ], "x": [ -7.065063744229777 ], "y": [ 4.079016184604144 ], "z": [ 15.000000160372249 ] }, { "legendgroup": "vector_39", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109475, 3.5325325330122617 ], "y": [ -8.158033597644142, -8.158033523843994 ], "z": [ 14.999999990309053, 14.999999897837638 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_39", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 5.0640262855945355e-8 ], "v": [ 1.4760029483714795e-8 ], "w": [ -1.8494283247962358e-8 ], "x": [ 3.5325325330122617 ], "y": [ -8.158033523843994 ], "z": [ 14.999999897837638 ] }, { "legendgroup": "vector_40", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662665023981328 ], "y": [ -5.098771063125474, -5.0987686911974155 ], "z": [ 14.999999990309053, 14.999999786148392 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_40", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 5.446090055747146e-8 ], "v": [ 4.7438561167772426e-7 ], "w": [ -4.083213228949276e-8 ], "x": [ 1.7662665023981328 ], "y": [ -5.0987686911974155 ], "z": [ 14.999999786148392 ] }, { "legendgroup": "vector_41", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, 0.0004081526515979624 ], "y": [ -2.0395085286068064, -2.0395142784436633 ], "z": [ 14.999999990309053, 14.999651379813805 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_41", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00008159445505694866 ], "v": [ -0.0000011499673713277758 ], "w": [ -0.00006972209904970237 ], "x": [ 0.0004081526515979624 ], "y": [ -2.0395142784436633 ], "z": [ 14.999651379813805 ] }, { "legendgroup": "vector_42", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7659232429925096 ], "y": [ 1.019754005911861, 1.0198389869884894 ], "z": [ 14.999999990309053, 14.999747984104769 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_42", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00006852526969881693 ], "v": [ 0.000016996215325654034 ], "w": [ -0.00005040124085708281 ], "x": [ -1.7659232429925096 ], "y": [ 1.0198389869884894 ], "z": [ 14.999747984104769 ] }, { "legendgroup": "vector_43", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325251425024056 ], "y": [ 4.079016540430528, 4.0790123755546155 ], "z": [ 14.999999990309053, 15.000000062481954 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_43", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0000013553111830343878 ], "v": [ -8.329751825721617e-7 ], "w": [ 1.4434580168919435e-8 ], "x": [ -3.5325251425024056 ], "y": [ 4.0790123755546155 ], "z": [ 15.000000062481954 ] }, { "legendgroup": "vector_44", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.2987982343673 ], "y": [ 7.138279074949196, 7.138279069744047 ], "z": [ 14.999999990309053, 14.999999879064605 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_44", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -5.311833274449399e-8 ], "v": [ -1.0410298563142464e-9 ], "w": [ -2.224888978785983e-8 ], "x": [ -5.2987982343673 ], "y": [ 7.138279069744047 ], "z": [ 14.999999879064605 ] }, { "legendgroup": "vector_45", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.29879884261576 ], "y": [ -5.098771063125474, -5.098770131179589 ], "z": [ 14.999999990309053, 15.000001026771109 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_45", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 1.0261749916072253e-7 ], "v": [ 1.8638917702065537e-7 ], "w": [ 2.0729241119653516e-7 ], "x": [ 5.29879884261576 ], "y": [ -5.098770131179589 ], "z": [ 15.000001026771109 ] }, { "legendgroup": "vector_46", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325354636893427 ], "y": [ -2.0395085286068064, -2.0395158634916855 ], "z": [ 14.999999990309053, 14.999988541894854 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_46", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 6.367756792506878e-7 ], "v": [ -0.0000014669769758111396 ], "w": [ -0.0000022896828398336045 ], "x": [ 3.5325354636893427 ], "y": [ -2.0395158634916855 ], "z": [ 14.999988541894854 ] }, { "legendgroup": "vector_47", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7655629866900253 ], "y": [ 1.019754005911861, 1.01963067057045 ], "z": [ 14.999999990309053, 15.000614299418856 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_47", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00014064868072093638 ], "v": [ -0.00002466706828217497 ], "w": [ 0.0001228618219605536 ], "x": [ 1.7655629866900253 ], "y": [ 1.01963067057045 ], "z": [ 15.000614299418856 ] }, { "legendgroup": "vector_48", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, -0.000004418034737903635 ], "y": [ 4.079016540430528, 4.079015356224853 ], "z": [ 14.999999990309053, 14.999985033200531 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_48", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -9.196822102245469e-7 ], "v": [ -2.3684113504556935e-7 ], "w": [ -0.00000299142170436451 ], "x": [ -0.000004418034737903635 ], "y": [ 4.079015356224853 ], "z": [ 14.999985033200531 ] }, { "legendgroup": "vector_49", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662665675405955 ], "y": [ 7.138279074949196, 7.138278340912571 ], "z": [ 14.999999990309053, 15.000000850598058 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_49", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -1.3963991838225206e-7 ], "v": [ -1.4680732496807725e-7 ], "w": [ 1.7205780086878288e-7 ], "x": [ -1.7662665675405955 ], "y": [ 7.138278340912571 ], "z": [ 15.000000850598058 ] }, { "legendgroup": "vector_50", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.0650636562960445 ], "y": [ -2.0395085286068064, -2.0395086256240886 ], "z": [ 14.999999990309053, 14.999998671308294 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_50", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -1.4458990727019523e-7 ], "v": [ -1.9403456422778302e-8 ], "w": [ -2.6380015198931303e-7 ], "x": [ 7.0650636562960445 ], "y": [ -2.0395086256240886 ], "z": [ 14.999998671308294 ] }, { "legendgroup": "vector_51", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298797215714338 ], "y": [ 1.019754005911861, 1.0197593505767388 ], "z": [ 14.999999990309053, 15.000002238219466 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_51", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.2276278509319806e-7 ], "v": [ 0.0000010689329755593305 ], "w": [ 4.4958208245495147e-7 ], "x": [ 5.298797215714338 ], "y": [ 1.0197593505767388 ], "z": [ 15.000002238219466 ] }, { "legendgroup": "vector_52", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.532533506864706 ], "y": [ 4.079016540430528, 4.0790202357662855 ], "z": [ 14.999999990309053, 15.000002426994662 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_52", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.454107518846691e-7 ], "v": [ 7.390671514384753e-7 ], "w": [ 4.873371216173624e-7 ], "x": [ 3.532533506864706 ], "y": [ 4.0790202357662855 ], "z": [ 15.000002426994662 ] }, { "legendgroup": "vector_53", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662677613667848 ], "y": [ 7.138279074949196, 7.138279729344135 ], "z": [ 14.999999990309053, 14.999998751201696 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_53", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 3.0625463094726987e-7 ], "v": [ 1.3087898773888124e-7 ], "w": [ -2.4782147152000374e-7 ], "x": [ 1.7662677613667848 ], "y": [ 7.138279729344135 ], "z": [ 14.999998751201696 ] }, { "legendgroup": "vector_54", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.831330244566573 ], "y": [ 1.019754005911861, 1.0197537464096575 ], "z": [ 14.999999990309053, 14.999999988883129 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_54", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -3.687926476340144e-8 ], "v": [ -5.1900440679406546e-8 ], "w": [ -2.851849403017151e-10 ], "x": [ 8.831330244566573 ], "y": [ 1.0197537464096575 ], "z": [ 14.999999988883129 ] }, { "legendgroup": "vector_55", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.0650642494712175 ], "y": [ 4.079016540430528, 4.079016871524328 ], "z": [ 14.999999990309053, 14.99999950780475 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_55", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.5954872822263198e-8 ], "v": [ 6.621875994410871e-8 ], "w": [ -9.650086069290556e-8 ], "x": [ 7.0650642494712175 ], "y": [ 4.079016871524328 ], "z": [ 14.99999950780475 ] }, { "legendgroup": "vector_56", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298798454304322 ], "y": [ 7.138279074949196, 7.13827906591347 ], "z": [ 14.999999990309053, 14.999999974847784 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_56", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.4955211607237416e-8 ], "v": [ -1.807145114561637e-9 ], "w": [ -3.0922537879649757e-9 ], "x": [ 5.298798454304322 ], "y": [ 7.13827906591347 ], "z": [ 14.999999974847784 ] }, { "legendgroup": "vector_57", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662659941170615 ], "y": [ -5.098771063125474, -5.098771054089748 ], "z": [ 14.999999990309053, 15.000000005770323 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_57", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.495521160598672e-8 ], "v": [ 1.807145117400521e-9 ], "w": [ 3.092253788901344e-9 ], "x": [ -1.7662659941170615 ], "y": [ -5.098771054089748 ], "z": [ 15.000000005770323 ] }, { "legendgroup": "vector_58", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325317892839565 ], "y": [ -2.0395085286068064, -2.0395088597006064 ], "z": [ 14.999999990309053, 15.000000472813356 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_58", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.5954872822898473e-8 ], "v": [ -6.621875994336756e-8 ], "w": [ 9.650086069317025e-8 ], "x": [ -3.5325317892839565 ], "y": [ -2.0395088597006064 ], "z": [ 15.000000472813356 ] }, { "legendgroup": "vector_59", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.298797784379313 ], "y": [ 1.019754005911861, 1.0197542654140646 ], "z": [ 14.999999990309053, 14.999999991734978 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_59", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 3.68792647661543e-8 ], "v": [ 5.190044068092194e-8 ], "w": [ 2.8518494128109693e-10 ], "x": [ -5.298797784379313 ], "y": [ 1.0197542654140646 ], "z": [ 14.999999991734978 ] }, { "legendgroup": "vector_60", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662646988204753 ], "y": [ -5.098771063125474, -5.098771717520413 ], "z": [ 14.999999990309053, 15.00000122941641 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_60", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -3.0625463095044624e-7 ], "v": [ -1.3087898774269288e-7 ], "w": [ 2.4782147151169223e-7 ], "x": [ 1.7662646988204753 ], "y": [ -5.098771717520413 ], "z": [ 15.00000122941641 ] }, { "legendgroup": "vector_61", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, -0.0000010466774461978934 ], "y": [ -2.0395085286068064, -2.039512223942564 ], "z": [ 14.999999990309053, 14.999997553623444 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_61", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.4541075188339856e-7 ], "v": [ -7.390671514352989e-7 ], "w": [ -4.873371216139742e-7 ], "x": [ -0.0000010466774461978934 ], "y": [ -2.039512223942564 ], "z": [ 14.999997553623444 ] }, { "legendgroup": "vector_62", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662647555270783 ], "y": [ 1.019754005911861, 1.0197486612469833 ], "z": [ 14.999999990309053, 14.99999774239864 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_62", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.227627850700238e-7 ], "v": [ -0.000001068932975563248 ], "w": [ -4.4958208244648114e-7 ], "x": [ -1.7662647555270783 ], "y": [ 1.0197486612469833 ], "z": [ 14.99999774239864 ] }, { "legendgroup": "vector_63", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325311961087844 ], "y": [ 4.079016540430528, 4.07901663744781 ], "z": [ 14.999999990309053, 15.000001309309813 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_63", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 1.4458990726765413e-7 ], "v": [ 1.9403456419760748e-8 ], "w": [ 2.6380015198404554e-7 ], "x": [ -3.5325311961087844 ], "y": [ 4.07901663744781 ], "z": [ 15.000001309309813 ] }, { "legendgroup": "vector_64", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298799027727856 ], "y": [ -5.098771063125474, -5.098770329088849 ], "z": [ 14.999999990309053, 14.999999130020049 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_64", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 1.3963991838436965e-7 ], "v": [ 1.468073249718889e-7 ], "w": [ -1.7205780086110664e-7 ], "x": [ 5.298799027727856 ], "y": [ -5.098770329088849 ], "z": [ 14.999999130020049 ] }, { "legendgroup": "vector_65", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325368782219977 ], "y": [ -2.0395085286068064, -2.0395073444011316 ], "z": [ 14.999999990309053, 15.000014947417576 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_65", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 9.196822101697279e-7 ], "v": [ 2.3684113499474737e-7 ], "w": [ 0.0000029914217044837827 ], "x": [ 3.5325368782219977 ], "y": [ -2.0395073444011316 ], "z": [ 15.000014947417576 ] }, { "legendgroup": "vector_66", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.766969473497232 ], "y": [ 1.019754005911861, 1.0198773412532713 ], "z": [ 14.999999990309053, 14.999385681199241 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_66", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00014064868072039428 ], "v": [ 0.00002466706828206655 ], "w": [ -0.00012286182196250515 ], "x": [ 1.766969473497232 ], "y": [ 1.0198773412532713 ], "z": [ 14.999385681199241 ] }, { "legendgroup": "vector_67", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, -0.000003003502082831052 ], "y": [ 4.079016540430528, 4.079023875315407 ], "z": [ 14.999999990309053, 15.000011438723252 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_67", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -6.367756792100302e-7 ], "v": [ 0.0000014669769757501532 ], "w": [ 0.000002289682839792947 ], "x": [ -0.000003003502082831052 ], "y": [ 4.079023875315407 ], "z": [ 15.000011438723252 ] }, { "legendgroup": "vector_68", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662663824284994 ], "y": [ 7.138279074949196, 7.138278143003311 ], "z": [ 14.999999990309053, 14.999998953846998 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_68", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -1.0261749915002873e-7 ], "v": [ -1.8638917701769076e-7 ], "w": [ -2.0729241117970038e-7 ], "x": [ -1.7662663824284994 ], "y": [ 7.138278143003311 ], "z": [ 14.999998953846998 ] }, { "legendgroup": "vector_69", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.83133069455456 ], "y": [ -5.098771063125474, -5.098771057920325 ], "z": [ 14.999999990309053, 15.000000101553502 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_69", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 5.311833274629725e-8 ], "v": [ 1.0410298549642877e-9 ], "w": [ 2.2248889781990158e-8 ], "x": [ 8.83133069455456 ], "y": [ -5.098771057920325 ], "z": [ 15.000000101553502 ] }, { "legendgroup": "vector_70", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065057602689666 ], "y": [ -2.0395085286068064, -2.039504363730894 ], "z": [ 14.999999990309053, 14.999999918136153 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_70", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0000013553111830301527 ], "v": [ 8.329751825615738e-7 ], "w": [ -1.4434580128261853e-8 ], "x": [ 7.065057602689666 ], "y": [ -2.039504363730894 ], "z": [ 14.999999918136153 ] }, { "legendgroup": "vector_71", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298455703179771 ], "y": [ 1.019754005911861, 1.0196690248352371 ], "z": [ 14.999999990309053, 15.000251996513342 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_71", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0000685252696986001 ], "v": [ -0.000016996215324786672 ], "w": [ 0.00005040124085751649 ], "x": [ 5.298455703179771 ], "y": [ 1.0196690248352371 ], "z": [ 15.000251996513342 ] }, { "legendgroup": "vector_72", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5321243075356756 ], "y": [ 4.079016540430528, 4.079022290267382 ], "z": [ 14.999999990309053, 15.000348600804301 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_72", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00008159445505421444 ], "v": [ 0.0000011499673706772545 ], "w": [ 0.00006972209904966765 ], "x": [ 3.5321243075356756 ], "y": [ 4.079022290267382 ], "z": [ 15.000348600804301 ] }, { "legendgroup": "vector_73", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.766265957789127 ], "y": [ 7.138279074949196, 7.138276703021138 ], "z": [ 14.999999990309053, 15.000000194469715 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_73", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -5.4460900589341075e-8 ], "v": [ -4.7438561169540607e-7 ], "w": [ 4.083213236064353e-8 ], "x": [ 1.766265957789127 ], "y": [ 7.138276703021138 ], "z": [ 15.000000194469715 ] }, { "legendgroup": "vector_74", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.803763127750102e-7, -7.28250015103414e-8 ], "y": [ 10.197541609467862, 10.197541535667714 ], "z": [ 14.999999990309053, 15.000000082780469 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_74", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -5.064026285707032e-8 ], "v": [ -1.476002948608384e-8 ], "w": [ 1.849428324640726e-8 ], "x": [ -7.28250015103414e-8 ], "y": [ 10.197541535667714 ], "z": [ 15.000000082780469 ] }, { "legendgroup": "vector_75", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.597596478680213, 10.597596204417036 ], "y": [ -2.0395085286068064, -2.0395081727804225 ], "z": [ 14.999999990309053, 14.999999820245858 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_75", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -5.48526354023232e-8 ], "v": [ 7.11652767846029e-8 ], "w": [ -3.401263914843301e-8 ], "x": [ 10.597596204417036 ], "y": [ -2.0395081727804225 ], "z": [ 14.999999820245858 ] }, { "legendgroup": "vector_76", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.831331565640149 ], "y": [ 1.019754005911861, 1.0197585984282695 ], "z": [ 14.999999990309053, 15.000001930290356 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_76", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.2733545041110996e-7 ], "v": [ 9.185032816781135e-7 ], "w": [ 3.8799626050847887e-7 ], "x": [ 8.831331565640149 ], "y": [ 1.0197585984282695 ], "z": [ 15.000001930290356 ] }, { "legendgroup": "vector_77", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065063437874909 ], "y": [ 4.079016540430528, 4.079010964394324 ], "z": [ 14.999999990309053, 14.999976146185329 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_77", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -1.8827413446228765e-7 ], "v": [ -0.0000011152072407967267 ], "w": [ -0.000004768824744758726 ], "x": [ 7.065063437874909 ], "y": [ 4.079010964394324 ], "z": [ 14.999976146185329 ] }, { "legendgroup": "vector_78", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298804621616015 ], "y": [ 7.138279074949196, 7.1382809299026055 ], "z": [ 14.999999990309053, 15.000002298062192 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_78", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0000012584175502805932 ], "v": [ 3.7099068188887965e-7 ], "w": [ 4.6155062767926335e-7 ], "x": [ 5.298804621616015 ], "y": [ 7.1382809299026055 ], "z": [ 15.000002298062192 ] }, { "legendgroup": "vector_79", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325324378821437 ], "y": [ 10.197541609467862, 10.197541656935147 ], "z": [ 14.999999990309053, 14.99999974456889 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_79", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 3.161423943994281e-8 ], "v": [ 9.493457150482981e-9 ], "w": [ -4.9148032413725945e-8 ], "x": [ 3.5325324378821437 ], "y": [ 10.197541656935147 ], "z": [ 14.99999974456889 ] }, { "legendgroup": "vector_80", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363862528397531, 12.363862398816128 ], "y": [ 1.019754005911861, 1.0197537358766535 ], "z": [ 14.999999990309053, 14.999999878027708 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_80", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -2.5916280596938014e-8 ], "v": [ -5.4007041521300894e-8 ], "w": [ -2.24562689558686e-8 ], "x": [ 12.363862398816128 ], "y": [ 1.0197537358766535 ], "z": [ 14.999999878027708 ] }, { "legendgroup": "vector_81", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.597596478680215, 10.597595838978098 ], "y": [ 4.079016540430528, 4.079016390104683 ], "z": [ 14.999999990309053, 14.99999976495119 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_81", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -1.2794042324026838e-7 ], "v": [ -3.006516910462731e-8 ], "w": [ -4.507157295840804e-8 ], "x": [ 10.597595838978098 ], "y": [ 4.079016390104683 ], "z": [ 14.99999976495119 ] }, { "legendgroup": "vector_82", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962898, 8.83133159817771 ], "y": [ 7.138279074949196, 7.138280070935142 ], "z": [ 14.999999990309053, 14.999999553856508 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_82", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 2.3384296249514156e-7 ], "v": [ 1.9919718926650833e-7 ], "w": [ -8.7290508909345e-8 ], "x": [ 8.83133159817771 ], "y": [ 7.138280070935142 ], "z": [ 14.999999553856508 ] }, { "legendgroup": "vector_83", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065064423617701 ], "y": [ 10.197541609467862, 10.197541695718465 ], "z": [ 14.999999990309053, 14.999999898987523 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_83", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 8.874424049399445e-9 ], "v": [ 1.7250120533913068e-8 ], "w": [ -1.8264305832295426e-8 ], "x": [ 7.065064423617701 ], "y": [ 10.197541695718465 ], "z": [ 14.999999898987523 ] }, { "legendgroup": "vector_84", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003436, -3.532447573707922 ], "y": [ -4.079047401989241, -4.078525188030117 ], "z": [ 14.999999980438607, 15.000329762856055 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_84", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.000006296059102769073 ], "v": [ 0.00010444279182493757 ], "w": [ 0.00006595648348937437 ], "x": [ -3.532447573707922 ], "y": [ -4.078525188030117 ], "z": [ 15.000329762856055 ] }, { "legendgroup": "vector_85", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298745103720753, -5.2982823707216165 ], "y": [ -1.0197848674705732, -1.0199668004270306 ], "z": [ 14.999999980438607, 14.99967147623829 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_85", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00009254659982728266 ], "v": [ -0.00003638659129150028 ], "w": [ -0.00006570084006331112 ], "x": [ -5.2982823707216165 ], "y": [ -1.0199668004270306 ], "z": [ 14.99967147623829 ] }, { "legendgroup": "vector_86", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.766319095148516, 1.766703722791922 ], "y": [ -7.138309936507907, -7.138035709424786 ], "z": [ 14.999999980438607, 15.00032981721144 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_86", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00007692552868121701 ], "v": [ 0.00005484541662429772 ], "w": [ 0.00006596735456661511 ], "x": [ 1.766703722791922 ], "y": [ -7.138035709424786 ], "z": [ 15.00032981721144 ] }, { "legendgroup": "vector_87", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 0.008627906735864348 ], "y": [ -4.079047401989241, -4.064048074166367 ], "z": [ 14.999999980438607, 15.026786771057989 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_87", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0017149722609331372 ], "v": [ 0.002999865564574793 ], "w": [ 0.005357358123876061 ], "x": [ 0.008627906735864348 ], "y": [ -4.064048074166367 ], "z": [ 15.026786771057989 ] }, { "legendgroup": "vector_88", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662130042861186, -1.8270086539420112 ], "y": [ -1.0197848674705732, -1.0569009686702375 ], "z": [ 14.999999980438607, 14.999460449052586 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_88", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.012159129931178502 ], "v": [ -0.007423220239932862 ], "w": [ -0.00010790627720418352 ], "x": [ -1.8270086539420112 ], "y": [ -1.0569009686702375 ], "z": [ 14.999460449052586 ] }, { "legendgroup": "vector_89", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003435, -3.514844414121343 ], "y": [ 2.0394776670480943, 2.03976301424974 ], "z": [ 14.999999980438607, 14.973426617361786 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_89", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0035269279764184236 ], "v": [ 0.00005706944032908656 ], "w": [ -0.005314672615364376 ], "x": [ -3.514844414121343 ], "y": [ 2.03976301424974 ], "z": [ 14.973426617361786 ] }, { "legendgroup": "vector_90", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298745103720751, -5.298277957466533 ], "y": [ 5.098740201566762, 5.0989300208833885 ], "z": [ 14.999999980438607, 14.999678095136662 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_90", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00009342925084353787 ], "v": [ 0.000037963863325426456 ], "w": [ -0.00006437706038890932 ], "x": [ -5.298277957466533 ], "y": [ 5.0989300208833885 ], "z": [ 14.999678095136662 ] }, { "legendgroup": "vector_91", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.29885119458315, 5.298472434548416 ], "y": [ -7.138309936507907, -7.138057965334017 ], "z": [ 14.999999980438607, 14.999671431072652 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_91", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00007575200694674574 ], "v": [ 0.000050394234777970725 ], "w": [ -0.00006570987319085731 ], "x": [ 5.298472434548416 ], "y": [ -7.138057965334017 ], "z": [ 14.999671431072652 ] }, { "legendgroup": "vector_92", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325851448658323, 3.531985791004129 ], "y": [ -4.079047401989241, -4.146933139491121 ], "z": [ 14.999999980438607, 14.999464275072958 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_92", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00011987077234068227 ], "v": [ -0.01357714750037593 ], "w": [ -0.00010714107312982303 ], "x": [ 3.531985791004129 ], "y": [ -4.146933139491121 ], "z": [ 14.999464275072958 ] }, { "legendgroup": "vector_93", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7663190951485155, 2.5669298637705174 ], "y": [ -1.0197848674705732, 0.30826973182287176 ], "z": [ 14.999999980438607, 15.060650491348271 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_93", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.16012215372440036 ], "v": [ 0.265610919858689 ], "w": [ 0.012130102181932763 ], "x": [ 2.5669298637705174 ], "y": [ 0.30826973182287176 ], "z": [ 15.060650491348271 ] }, { "legendgroup": "vector_94", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 1.5101004515406542 ], "y": [ 2.0394776670480943, 2.0440542621602895 ], "z": [ 14.999999980438607, 14.960748850409793 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_94", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.3020094812218911 ], "v": [ 0.0009153190224390547 ], "w": [ -0.007850226005762939 ], "x": [ 1.5101004515406542 ], "y": [ 2.0440542621602895 ], "z": [ 14.960748850409793 ] }, { "legendgroup": "vector_95", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662130042861186, -1.8266197138171598 ], "y": [ 5.098740201566762, 5.135396905262081 ], "z": [ 14.999999980438607, 14.999996056615075 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_95", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.012081341906208243 ], "v": [ 0.007331340739063971 ], "w": [ -7.847647066933068e-7 ], "x": [ -1.8266197138171598 ], "y": [ 5.135396905262081 ], "z": [ 14.999996056615075 ] }, { "legendgroup": "vector_96", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003435, -3.5324539945092432 ], "y": [ 8.158002736085429, 8.157483998935648 ], "z": [ 14.999999980438607, 15.000321857203714 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_96", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.0000050118988383235484 ], "v": [ -0.00010374742995612841 ], "w": [ 0.00006437535302124686 ], "x": [ -3.5324539945092432 ], "y": [ 8.157483998935648 ], "z": [ 15.000321857203714 ] }, { "legendgroup": "vector_97", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 7.056770809240065 ], "y": [ -4.079047401989241, -4.063872706127057 ], "z": [ 14.999999980438607, 14.973424650048074 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_97", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0016692870120801103 ], "v": [ 0.0030349391724367315 ], "w": [ -0.005315066078106768 ], "x": [ 7.056770809240065 ], "y": [ -4.063872706127057 ], "z": [ 14.973424650048074 ] }, { "legendgroup": "vector_98", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 4.518314887495895 ], "y": [ -1.0197848674705732, 0.30427475539034465 ], "z": [ 14.999999980438607, 14.960621271375672 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_98", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.15610726141745077 ], "v": [ 0.26481192457218355 ], "w": [ -0.007875741812587149 ], "x": [ 4.518314887495895 ], "y": [ 0.30427475539034465 ], "z": [ 14.960621271375672 ] }, { "legendgroup": "vector_99", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7663190951485155, 2.546855402235795 ], "y": [ 5.098740201566762, 3.774680578705833 ], "z": [ 14.999999980438607, 15.039378689501532 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_99", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.15610726141745593 ], "v": [ -0.2648119245721857 ], "w": [ 0.007875741812585074 ], "x": [ 2.546855402235795 ], "y": [ 3.774680578705833 ], "z": [ 15.039378689501532 ] }, { "legendgroup": "vector_100", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 0.008399480491598691 ], "y": [ 8.158002736085429, 8.142828040223245 ], "z": [ 14.999999980438607, 15.026575310829141 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_100", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.001669287012080006 ], "v": [ -0.003034939172436831 ], "w": [ 0.0053150660781066715 ], "x": [ 0.008399480491598691 ], "y": [ 8.142828040223245 ], "z": [ 15.026575310829141 ] }, { "legendgroup": "vector_101", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.597624284240908 ], "y": [ -4.079047401989241, -4.07852866483946 ], "z": [ 14.999999980438607, 14.999678103673501 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_101", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.0000050118988383252425 ], "v": [ 0.00010374742995610695 ], "w": [ -0.00006437535302124893 ], "x": [ 10.597624284240908 ], "y": [ -4.07852866483946 ], "z": [ 14.999678103673501 ] }, { "legendgroup": "vector_102", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831383294017783, 8.891790003548826 ], "y": [ -1.0197848674705732, -1.0564415711658934 ], "z": [ 14.999999980438607, 15.00000390426214 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_102", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.012081341906208347 ], "v": [ -0.007331340739064059 ], "w": [ 7.847647067268705e-7 ], "x": [ 8.891790003548826 ], "y": [ -1.0564415711658934 ], "z": [ 15.00000390426214 ] }, { "legendgroup": "vector_103", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 5.555069838191006 ], "y": [ 2.0394776670480943, 2.034901071935902 ], "z": [ 14.999999980438607, 15.039251110467424 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_103", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.3020094812218919 ], "v": [ -0.0009153190224384447 ], "w": [ 0.007850226005763303 ], "x": [ 5.555069838191006 ], "y": [ 2.034901071935902 ], "z": [ 15.039251110467424 ] }, { "legendgroup": "vector_104", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 4.49824042596115 ], "y": [ 5.098740201566762, 3.7706856022733213 ], "z": [ 14.999999980438607, 14.939349469528935 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_104", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.1601221537243997 ], "v": [ -0.2656109198586881 ], "w": [ -0.012130102181934471 ], "x": [ 4.49824042596115 ], "y": [ 3.7706856022733213 ], "z": [ 14.939349469528935 ] }, { "legendgroup": "vector_105", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325851448658323, 3.533184498727535 ], "y": [ 8.158002736085429, 8.225888473587307 ], "z": [ 14.999999980438607, 15.000535685804257 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_105", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00011987077234060583 ], "v": [ 0.013577147500375886 ], "w": [ 0.00010714107312974797 ], "x": [ 3.533184498727535 ], "y": [ 8.225888473587307 ], "z": [ 15.000535685804257 ] }, { "legendgroup": "vector_106", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.766319095148515, 1.7666978551832488 ], "y": [ 11.217265270604097, 11.217013299430207 ], "z": [ 14.999999980438607, 15.000328529804563 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_106", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.00007575200694675543 ], "v": [ -0.00005039423477796233 ], "w": [ 0.00006570987319085372 ], "x": [ 1.7666978551832488 ], "y": [ 11.217013299430207 ], "z": [ 15.000328529804563 ] }, { "legendgroup": "vector_107", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363915393452416, 12.363448247198198 ], "y": [ -1.0197848674705732, -1.0199746867872004 ], "z": [ 14.999999980438607, 15.000321865740553 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_107", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00009342925084354185 ], "v": [ -0.000037963863325426565 ], "w": [ 0.00006437706038891142 ], "x": [ 12.363448247198198 ], "y": [ -1.0199746867872004 ], "z": [ 15.000321865740553 ] }, { "legendgroup": "vector_108", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.580014703853006 ], "y": [ 2.0394776670480943, 2.0391923198464483 ], "z": [ 14.999999980438607, 15.026573343515429 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_108", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.003526927976418533 ], "v": [ -0.0000570694403291586 ], "w": [ 0.005314672615364327 ], "x": [ 10.580014703853006 ], "y": [ 2.0391923198464483 ], "z": [ 15.026573343515429 ] }, { "legendgroup": "vector_109", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831383294017783, 8.892178943673676 ], "y": [ 5.098740201566762, 5.135856302766427 ], "z": [ 14.999999980438607, 15.000539511824629 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_109", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ 0.012159129931178578 ], "v": [ 0.007423220239932969 ], "w": [ 0.00010790627720422857 ], "x": [ 8.892178943673676 ], "y": [ 5.135856302766427 ], "z": [ 15.000539511824629 ] }, { "legendgroup": "vector_110", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 7.0565423829958 ], "y": [ 8.158002736085429, 8.143003408262555 ], "z": [ 14.999999980438607, 14.973213189819226 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_110", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.001714972260933192 ], "v": [ -0.0029998655645748196 ], "w": [ -0.005357358123876065 ], "x": [ 7.0565423829958 ], "y": [ 8.143003408262555 ], "z": [ 14.973213189819226 ] }, { "legendgroup": "vector_111", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 5.298466566939743 ], "y": [ 11.217265270604097, 11.216991043520975 ], "z": [ 14.999999980438607, 14.999670143665774 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_111", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00007692552868122728 ], "v": [ -0.00005484541662431283 ], "w": [ -0.00006596735456662046 ], "x": [ 5.298466566939743 ], "y": [ 11.216991043520975 ], "z": [ 14.999670143665774 ] }, { "legendgroup": "vector_112", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363915393452418, 12.363452660453282 ], "y": [ 5.098740201566762, 5.098922134523219 ], "z": [ 14.999999980438607, 15.000328484638924 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_112", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.00009254659982728317 ], "v": [ 0.000036386591291496336 ], "w": [ 0.00006570084006329995 ], "x": [ 12.363452660453282 ], "y": [ 5.098922134523219 ], "z": [ 15.000328484638924 ] }, { "legendgroup": "vector_113", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.597617863439586 ], "y": [ 8.158002736085429, 8.157480522126304 ], "z": [ 14.999999980438607, 14.99967019802116 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_113", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.15518972601340555, "type": "cone", "u": [ -0.000006296059102769364 ], "v": [ -0.00010444279182494868 ], "w": [ -0.00006595648348935266 ], "x": [ 10.597617863439586 ], "y": [ 8.157480522126304 ], "z": [ 14.99967019802116 ] } ], "layout": { "autosize": false, "height": 500, "scene": { "aspectmode": "data", "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "X Axis" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Y Axis" } }, "zaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Z Axis" } } }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 1000 } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "system.plot_DMI(rescale=10, width=1000)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Or if we want to visualize multiple things at once we can add together the figures as they are standard ``plotly.graph_objs.Figure`` instances." ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "vector_0", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.06511688354784, -7.065120032459936 ], "y": [ -6.118494724261708, -6.118546950898506 ], "z": [ 15.0000000001795, 14.999967021075129 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_0", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -6.297824192496024e-7 ], "v": [ -0.000010445327359625466 ], "w": [ -0.000006595820874414395 ], "x": [ -7.065120032459936 ], "y": [ -6.118546950898506 ], "z": [ 14.999967021075129 ] }, { "legendgroup": "vector_1", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831382933265157, -8.831429212096438 ], "y": [ -3.0592321897430397, -3.05921399412199 ], "z": [ 15.0000000001795, 15.000032847346011 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_1", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00000925576625605632 ], "v": [ 0.0000036391242100155845 ], "w": [ 0.0000065694333020744415 ], "x": [ -8.831429212096438 ], "y": [ -3.05921399412199 ], "z": [ 15.000032847346011 ] }, { "legendgroup": "vector_2", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958884, -1.7663572018712388 ], "y": [ -9.177757258780375, -9.177784676637083 ], "z": [ 15.0000000001795, 14.99996702657689 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_2", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000007693495070087218 ], "v": [ -0.0000054835713416758565 ], "w": [ -0.000006594720522260452 ], "x": [ -1.7663572018712388 ], "y": [ -9.177784676637083 ], "z": [ 14.99996702657689 ] }, { "legendgroup": "vector_3", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -3.5334423926429177 ], "y": [ -6.118494724261708, -6.119994718775718 ], "z": [ 15.0000000001795, 14.997321794683247 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_3", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00017152170594235446 ], "v": [ -0.0002999989028022054 ], "w": [ -0.00053564109925072 ], "x": [ -3.5334423926429177 ], "y": [ -6.119994718775718 ], "z": [ 14.997321794683247 ] }, { "legendgroup": "vector_4", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298850833830523, -5.292771487582012 ], "y": [ -3.0592321897430397, -3.0555216363625197 ], "z": [ 15.0000000001795, 15.000052117045975 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_4", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.001215869249702036 ], "v": [ 0.0007421106761039764 ], "w": [ 0.000010423373294801856 ], "x": [ -5.292771487582012 ], "y": [ -3.0555216363625197 ], "z": [ 15.000052117045975 ] }, { "legendgroup": "vector_5", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065116883547839, -7.0668798767425605 ], "y": [ 0.00003034477562777159, 0.000002614658184471903 ], "z": [ 15.0000000001795, 15.002657787134453 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_5", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00035259863894423403 ], "v": [ -0.000005546023488659937 ], "w": [ 0.0005315573909902799 ], "x": [ -7.0668798767425605 ], "y": [ 0.000002614658184471903 ], "z": [ 15.002657787134453 ] }, { "legendgroup": "vector_6", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831382933265155, -8.831429644799098 ], "y": [ 3.0592928792942953, 3.059273899412489 ], "z": [ 15.0000000001795, 15.000032200528041 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_6", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000009342306788396036 ], "v": [ -0.0000037959763612234514 ], "w": [ 0.000006440069708192202 ], "x": [ -8.831429644799098 ], "y": [ 3.059273899412489 ], "z": [ 15.000032200528041 ] }, { "legendgroup": "vector_7", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387453, 1.766251241450888 ], "y": [ -9.177757258780375, -9.177782460488636 ], "z": [ 15.0000000001795, 15.000032842840112 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_7", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000007575282428521722 ], "v": [ -0.0000050403416521809785 ], "w": [ 0.0000065685321222099966 ], "x": [ 1.766251241450888 ], "y": [ -9.177782460488636 ], "z": [ 15.000032842840112 ] }, { "legendgroup": "vector_8", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -0.00005268467857207515, 0.000006376100122254605 ], "y": [ -6.118494724261708, -6.111706060949887 ], "z": [ 15.0000000001795, 15.000052500938105 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_8", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000011812155738865951 ], "v": [ 0.0013577326623641689 ], "w": [ 0.000010500151720786985 ], "x": [ 0.000006376100122254605 ], "y": [ -6.111706060949887 ], "z": [ 15.000052500938105 ] }, { "legendgroup": "vector_9", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958888, -1.8463498649297028 ], "y": [ -3.0592321897430397, -3.1920162452812755 ], "z": [ 15.0000000001795, 14.99396700498514 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_9", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.01600622610676277 ], "v": [ -0.026556811107647193 ], "w": [ -0.0012065990388721013 ], "x": [ -1.8463498649297028 ], "y": [ -3.1920162452812755 ], "z": [ 14.99396700498514 ] }, { "legendgroup": "vector_10", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -3.683597672980046 ], "y": [ 0.00003034477562777159, -0.00040382386758695365 ], "z": [ 15.0000000001795, 15.003953688851213 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_10", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.030202577773368024 ], "v": [ -0.00008683372864294505 ], "w": [ 0.0007907377343423864 ], "x": [ -3.683597672980046 ], "y": [ -0.00040382386758695365 ], "z": [ 15.003953688851213 ] }, { "legendgroup": "vector_11", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298850833830523, -5.292809631624385 ], "y": [ 3.0592928792942953, 3.055626086754773 ], "z": [ 15.0000000001795, 14.999999607747622 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_11", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0012082404412275193 ], "v": [ -0.0007333585079044703 ], "w": [ -7.848637585204356e-8 ], "x": [ -5.292809631624385 ], "y": [ 3.055626086754773 ], "z": [ 14.999999607747622 ] }, { "legendgroup": "vector_12", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065116883547839, -7.065119392323029 ], "y": [ 6.118555413812962, 6.118607281357641 ], "z": [ 15.0000000001795, 14.99996779901611 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_12", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.017550380566577e-7 ], "v": [ 0.000010373508935786752 ], "w": [ -0.000006440232678023621 ], "x": [ -7.065119392323029 ], "y": [ 6.118607281357641 ], "z": [ 14.99996779901611 ] }, { "legendgroup": "vector_13", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 3.5333148054746775 ], "y": [ -6.118494724261708, -6.120012135468942 ], "z": [ 15.0000000001795, 15.002657590280021 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_13", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.00016707814372319014 ], "v": [ -0.0003034822414468207 ], "w": [ 0.000531518020103945 ], "x": [ 3.5333148054746775 ], "y": [ -6.120012135468942 ], "z": [ 15.002657590280021 ] }, { "legendgroup": "vector_14", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387448, 1.8442753278355555 ], "y": [ -3.0592321897430397, -3.19166015750906 ], "z": [ 15.0000000001795, 15.00394090989883 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_14", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.015612392559362125 ], "v": [ -0.026485593553204116 ], "w": [ 0.0007881819438659914 ], "x": [ 1.8442753278355555 ], "y": [ -3.19166015750906 ], "z": [ 15.00394090989883 ] }, { "legendgroup": "vector_15", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958888, -1.8443806971926993 ], "y": [ 3.0592928792942953, 3.191720847060317 ], "z": [ 15.0000000001795, 14.996059090460173 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_15", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.015612392559362087 ], "v": [ 0.026485593553204345 ], "w": [ -0.0007881819438656662 ], "x": [ -1.8443806971926993 ], "y": [ 3.191720847060317 ], "z": [ 14.996059090460173 ] }, { "legendgroup": "vector_16", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532584784113206, -3.533420174831822 ], "y": [ 6.118555413812962, 6.120072825020197 ], "z": [ 15.0000000001795, 14.99734241007898 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_16", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00016707814372321 ], "v": [ 0.00030348224144679766 ], "w": [ -0.0005315180201039564 ], "x": [ -3.533420174831822 ], "y": [ 6.120072825020197 ], "z": [ 14.99734241007898 ] }, { "legendgroup": "vector_17", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.0650115141906955, 7.065014022965886 ], "y": [ -6.118494724261708, -6.118546591806386 ], "z": [ 15.0000000001795, 15.000032201342892 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_17", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.017550380557174e-7 ], "v": [ -0.000010373508935789954 ], "w": [ 0.000006440232678023762 ], "x": [ 7.065014022965886 ], "y": [ -6.118546591806386 ], "z": [ 15.000032201342892 ] }, { "legendgroup": "vector_18", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298745464473379, 5.292704262267241 ], "y": [ -3.0592321897430397, -3.0555653972035173 ], "z": [ 15.0000000001795, 15.00000039261138 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_18", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.0012082404412275317 ], "v": [ 0.0007333585079044709 ], "w": [ 7.848637584915835e-8 ], "x": [ 5.292704262267241 ], "y": [ -3.0555653972035173 ], "z": [ 15.00000039261138 ] }, { "legendgroup": "vector_19", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 3.683492303622902 ], "y": [ 0.00003034477562777159, 0.00046451341884233424 ], "z": [ 15.0000000001795, 14.99604631150779 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_19", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.03020257777336811 ], "v": [ 0.00008683372864291253 ], "w": [ -0.0007907377343421681 ], "x": [ 3.683492303622902 ], "y": [ 0.00046451341884233424 ], "z": [ 14.99604631150779 ] }, { "legendgroup": "vector_20", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387448, 1.846244495572559 ], "y": [ 3.0592928792942953, 3.192076934832532 ], "z": [ 15.0000000001795, 15.006032995373861 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_20", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.016006226106762812 ], "v": [ 0.02655681110764731 ], "w": [ 0.0012065990388719914 ], "x": [ 1.846244495572559 ], "y": [ 3.192076934832532 ], "z": [ 15.006032995373861 ] }, { "legendgroup": "vector_21", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -0.00005268467857207515, -0.00011174545726639509 ], "y": [ 6.118555413812962, 6.1117667505011415 ], "z": [ 15.0000000001795, 14.999947499420896 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_21", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000011812155738863987 ], "v": [ -0.0013577326623641615 ], "w": [ -0.000010500151720778567 ], "x": [ -0.00011174545726639509 ], "y": [ 6.1117667505011415 ], "z": [ 14.999947499420896 ] }, { "legendgroup": "vector_22", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7663187343958893, -1.766356610808032 ], "y": [ 9.17781794833163, 9.177843150039891 ], "z": [ 15.0000000001795, 14.99996715751889 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_22", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000007575282428523246 ], "v": [ 0.000005040341652179539 ], "w": [ -0.000006568532122211357 ], "x": [ -1.766356610808032 ], "y": [ 9.177843150039891 ], "z": [ 14.99996715751889 ] }, { "legendgroup": "vector_23", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831277563908012, 8.831324275441954 ], "y": [ -3.0592321897430397, -3.0592132098612335 ], "z": [ 15.0000000001795, 14.99996779983096 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_23", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000009342306788396727 ], "v": [ 0.0000037959763612236593 ], "w": [ -0.000006440069708191206 ], "x": [ 8.831324275441954 ], "y": [ -3.0592132098612335 ], "z": [ 14.99996779983096 ] }, { "legendgroup": "vector_24", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.0650115141906955, 7.066774507385417 ], "y": [ 0.00003034477562777159, 0.000058074893071041164 ], "z": [ 15.0000000001795, 14.997342213224549 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_24", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000352598638944231 ], "v": [ 0.000005546023488653914 ], "w": [ -0.0005315573909902788 ], "x": [ 7.066774507385417 ], "y": [ 0.000058074893071041164 ], "z": [ 14.997342213224549 ] }, { "legendgroup": "vector_25", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298745464473379, 5.292666118224869 ], "y": [ 3.0592928792942953, 3.0555823259137753 ], "z": [ 15.0000000001795, 14.999947883313027 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_25", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.0012158692497020313 ], "v": [ -0.0007421106761039768 ], "w": [ -0.000010423373294795054 ], "x": [ 5.292666118224869 ], "y": [ 3.0555823259137753 ], "z": [ 14.999947883313027 ] }, { "legendgroup": "vector_26", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5324794147560614, 3.5333370232857733 ], "y": [ 6.118555413812962, 6.120055408326973 ], "z": [ 15.0000000001795, 15.002678205675755 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_26", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0001715217059423502 ], "v": [ 0.00029999890280220186 ], "w": [ 0.0005356410992507116 ], "x": [ 3.5333370232857733 ], "y": [ 6.120055408326973 ], "z": [ 15.002678205675755 ] }, { "legendgroup": "vector_27", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7662133650387444, 1.7662518325140948 ], "y": [ 9.17781794833163, 9.177845366188338 ], "z": [ 15.0000000001795, 15.000032973782112 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_27", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000007693495070086764 ], "v": [ 0.00000548357134167518 ], "w": [ 0.000006594720522261001 ], "x": [ 1.7662518325140948 ], "y": [ 9.177845366188338 ], "z": [ 15.000032973782112 ] }, { "legendgroup": "vector_28", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831277563908014, 8.831323842739295 ], "y": [ 3.0592928792942953, 3.0592746836732454 ], "z": [ 15.0000000001795, 14.99996715301299 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_28", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000009255766256056885 ], "v": [ -0.0000036391242100163524 ], "w": [ -0.000006569433302075503 ], "x": [ 8.831323842739295 ], "y": [ 3.0592746836732454 ], "z": [ 14.99996715301299 ] }, { "legendgroup": "vector_29", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->0Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065011514190696, 7.065014663102793 ], "y": [ 6.118555413812962, 6.118607640449761 ], "z": [ 15.0000000001795, 15.000032979283873 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_29", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 6.297824192494647e-7 ], "v": [ 0.000010445327359623569 ], "w": [ 0.000006595820874415802 ], "x": [ 7.065014663102793 ], "y": [ 6.118607640449761 ], "z": [ 15.000032979283873 ] }, { "legendgroup": "vector_30", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325319234955326 ], "y": [ -8.158033597644142, -8.158033606269202 ], "z": [ 14.999999990309053, 14.999999999441206 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_30", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -8.8744240493068e-10 ], "v": [ -1.7250120533410142e-9 ], "w": [ 1.8264305832659386e-9 ], "x": [ -3.5325319234955326 ], "y": [ -8.158033606269202 ], "z": [ 14.999999999441206 ] }, { "legendgroup": "vector_31", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775638, -5.298798085697119 ], "y": [ -5.098771063125474, -5.098771162724068 ], "z": [ 14.999999990309053, 15.000000033954308 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_31", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.3384296249741796e-8 ], "v": [ -1.9919718927264932e-8 ], "w": [ 8.729050890931853e-9 ], "x": [ -5.298798085697119 ], "y": [ -5.098771162724068 ], "z": [ 15.000000033954308 ] }, { "legendgroup": "vector_32", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065064018492955, -7.065063954522744 ], "y": [ -2.0395085286068064, -2.039508513574222 ], "z": [ 14.999999990309053, 15.00000001284484 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_32", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.2794042324196244e-8 ], "v": [ 3.006516910356852e-9 ], "w": [ 4.507157295359054e-9 ], "x": [ -7.065063954522744 ], "y": [ -2.039508513574222 ], "z": [ 15.00000001284484 ] }, { "legendgroup": "vector_33", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-3 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -8.831330068210272, -8.831330055252133 ], "y": [ 1.019754005911861, 1.0197540329153818 ], "z": [ 14.999999990309053, 15.000000001537188 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_33", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.591628059516454e-9 ], "v": [ 5.400704152161192e-9 ], "w": [ 2.245626895570978e-9 ], "x": [ -8.831330055252133 ], "y": [ 1.0197540329153818 ], "z": [ 15.000000001537188 ] }, { "legendgroup": "vector_34", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631366318863e-7, 1.645691939437193e-7 ], "y": [ -8.158033597644142, -8.158033602390871 ], "z": [ 14.999999990309053, 15.000000014883069 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_34", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -3.1614239438938615e-9 ], "v": [ -9.493457149741827e-10 ], "w": [ 4.9148032416548286e-9 ], "x": [ 1.645691939437193e-7 ], "y": [ -8.158033602390871 ], "z": [ 15.000000014883069 ] }, { "legendgroup": "vector_35", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662664985497787 ], "y": [ -5.098771063125474, -5.098771248620815 ], "z": [ 14.999999990309053, 14.99999975953374 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_35", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.258417550279852e-7 ], "v": [ -3.7099068187320955e-8 ], "w": [ -4.6155062768688665e-8 ], "x": [ -1.7662664985497787 ], "y": [ -5.098771248620815 ], "z": [ 14.99999975953374 ] }, { "legendgroup": "vector_36", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.5325318249212536 ], "y": [ -2.0395085286068064, -2.039507971003186 ], "z": [ 14.999999990309053, 15.000002374721426 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_36", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.8827413439791315e-8 ], "v": [ 1.1152072408407725e-7 ], "w": [ 4.768824744680799e-7 ], "x": [ -3.5325318249212536 ], "y": [ -2.039507971003186 ], "z": [ 15.000002374721426 ] }, { "legendgroup": "vector_37", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.298798082443362 ], "y": [ 1.019754005911861, 1.0197535466602201 ], "z": [ 14.999999990309053, 14.999999796310924 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_37", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.2733545040523367e-8 ], "v": [ -9.185032816705961e-8 ], "w": [ -3.879962604788327e-8 ], "x": [ -5.298798082443362 ], "y": [ 1.0197535466602201 ], "z": [ 14.999999796310924 ] }, { "legendgroup": "vector_38", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -7.065064018492953, -7.065063991066635 ], "y": [ 4.079016540430528, 4.07901650484789 ], "z": [ 14.999999990309053, 15.000000007315373 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_38", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.485263539999386e-9 ], "v": [ -7.1165276787249876e-9 ], "w": [ 3.4012639144303725e-9 ], "x": [ -7.065063991066635 ], "y": [ 4.07901650484789 ], "z": [ 15.000000007315373 ] }, { "legendgroup": "vector_39", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109475, 3.532532305131079 ], "y": [ -8.158033597644142, -8.158033590264127 ], "z": [ 14.999999990309053, 14.999999981061912 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_39", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.0640262855945355e-9 ], "v": [ 1.4760029483714795e-9 ], "w": [ -1.8494283247962358e-9 ], "x": [ 3.532532305131079 ], "y": [ -8.158033590264127 ], "z": [ 14.999999981061912 ] }, { "legendgroup": "vector_40", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662662573240804 ], "y": [ -5.098771063125474, -5.098770825932668 ], "z": [ 14.999999990309053, 14.999999969892988 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_40", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.446090055747146e-9 ], "v": [ 4.7438561167772426e-8 ], "w": [ -4.083213228949276e-9 ], "x": [ 1.7662662573240804 ], "y": [ -5.098770825932668 ], "z": [ 14.999999969892988 ] }, { "legendgroup": "vector_41", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, 0.00004097760384169343 ], "y": [ -2.0395085286068064, -2.039509103590492 ], "z": [ 14.999999990309053, 14.999965129259529 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_41", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000008159445505694866 ], "v": [ -1.1499673713277758e-7 ], "w": [ -0.000006972209904970237 ], "x": [ 0.00004097760384169343 ], "y": [ -2.039509103590492 ], "z": [ 14.999965129259529 ] }, { "legendgroup": "vector_42", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.766231606706154 ], "y": [ 1.019754005911861, 1.019762504019524 ], "z": [ 14.999999990309053, 14.999974789688626 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_42", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0000068525269698816935 ], "v": [ 0.0000016996215325654034 ], "w": [ -0.000005040124085708281 ], "x": [ -1.766231606706154 ], "y": [ 1.019762504019524 ], "z": [ 14.999974789688626 ] }, { "legendgroup": "vector_43", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.532531241402729 ], "y": [ 4.079016540430528, 4.079016123942937 ], "z": [ 14.999999990309053, 14.999999997526343 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_43", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.3553111830343878e-7 ], "v": [ -8.329751825721617e-8 ], "w": [ 1.4434580168919435e-9 ], "x": [ -3.532531241402729 ], "y": [ 4.079016123942937 ], "z": [ 14.999999997526343 ] }, { "legendgroup": "vector_44", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.2987979953348034 ], "y": [ 7.138279074949196, 7.138279074428681 ], "z": [ 14.999999990309053, 14.999999979184608 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_44", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.3118332744494e-9 ], "v": [ -1.0410298563142464e-10 ], "w": [ -2.224888978785983e-9 ], "x": [ -5.2987979953348034 ], "y": [ 7.138279074428681 ], "z": [ 14.999999979184608 ] }, { "legendgroup": "vector_45", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298798380837013 ], "y": [ -5.098771063125474, -5.098770969930885 ], "z": [ 14.999999990309053, 15.00000009395526 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_45", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.0261749916072253e-8 ], "v": [ 1.8638917702065537e-8 ], "w": [ 2.0729241119653516e-8 ], "x": [ 5.298798380837013 ], "y": [ -5.098770969930885 ], "z": [ 15.00000009395526 ] }, { "legendgroup": "vector_46", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325325981987863 ], "y": [ -2.0395085286068064, -2.039509262095294 ], "z": [ 14.999999990309053, 14.999998845467633 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_46", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 6.367756792506878e-8 ], "v": [ -1.4669769758111396e-7 ], "w": [ -2.2896828398336045e-7 ], "x": [ 3.5325325981987863 ], "y": [ -2.039509262095294 ], "z": [ 14.999998845467633 ] }, { "legendgroup": "vector_47", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7661959057532697 ], "y": [ 1.019754005911861, 1.01974167237772 ], "z": [ 14.999999990309053, 15.000061421220034 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_47", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000014064868072093638 ], "v": [ -0.000002466706828217497 ], "w": [ 0.000012286182196055359 ], "x": [ 1.7661959057532697 ], "y": [ 1.01974167237772 ], "z": [ 15.000061421220034 ] }, { "legendgroup": "vector_48", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, -2.79464791893174e-7 ], "y": [ 4.079016540430528, 4.0790164220099605 ], "z": [ 14.999999990309053, 14.9999984945982 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_48", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -9.196822102245469e-8 ], "v": [ -2.3684113504556935e-8 ], "w": [ -2.99142170436451e-7 ], "x": [ -2.79464791893174e-7 ], "y": [ 4.0790164220099605 ], "z": [ 14.9999984945982 ] }, { "legendgroup": "vector_49", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662659391609628 ], "y": [ 7.138279074949196, 7.138279001545533 ], "z": [ 14.999999990309053, 15.000000076337953 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_49", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.3963991838225206e-8 ], "v": [ -1.4680732496807725e-8 ], "w": [ 1.7205780086878288e-8 ], "x": [ -1.7662659391609628 ], "y": [ 7.138279001545533 ], "z": [ 15.000000076337953 ] }, { "legendgroup": "vector_50", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065064306950627 ], "y": [ -2.0395085286068064, -2.0395085383085347 ], "z": [ 14.999999990309053, 14.999999858408977 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_50", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.4458990727019523e-8 ], "v": [ -1.9403456422778302e-9 ], "w": [ -2.6380015198931303e-8 ], "x": [ 7.065064306950627 ], "y": [ -2.0395085383085347 ], "z": [ 14.999999858408977 ] }, { "legendgroup": "vector_51", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298798218146872 ], "y": [ 1.019754005911861, 1.0197545403783488 ], "z": [ 14.999999990309053, 15.000000215100094 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_51", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.227627850931981e-8 ], "v": [ 1.0689329755593305e-7 ], "w": [ 4.495820824549515e-8 ], "x": [ 5.298798218146872 ], "y": [ 1.0197545403783488 ], "z": [ 15.000000215100094 ] }, { "legendgroup": "vector_52", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325324025163227 ], "y": [ 4.079016540430528, 4.079016909964103 ], "z": [ 14.999999990309053, 15.000000233977614 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_52", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.454107518846691e-8 ], "v": [ 7.390671514384753e-8 ], "w": [ 4.8733712161736235e-8 ], "x": [ 3.5325324025163227 ], "y": [ 4.079016909964103 ], "z": [ 15.000000233977614 ] }, { "legendgroup": "vector_53", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662663832209455 ], "y": [ 7.138279074949196, 7.13827914038869 ], "z": [ 14.999999990309053, 14.999999866398317 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_53", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 3.0625463094726987e-8 ], "v": [ 1.3087898773888124e-8 ], "w": [ -2.4782147152000374e-8 ], "x": [ 1.7662663832209455 ], "y": [ 7.13827914038869 ], "z": [ 14.999999866398317 ] }, { "legendgroup": "vector_54", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.831330410523265 ], "y": [ 1.019754005911861, 1.0197539799616406 ], "z": [ 14.999999990309053, 14.999999990166462 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_54", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -3.687926476340144e-9 ], "v": [ -5.190044067940655e-9 ], "w": [ -2.851849403017151e-11 ], "x": [ 8.831330410523265 ], "y": [ 1.0197539799616406 ], "z": [ 14.999999990166462 ] }, { "legendgroup": "vector_55", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065064366268145 ], "y": [ 4.079016540430528, 4.079016573539908 ], "z": [ 14.999999990309053, 14.999999942058622 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_55", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.5954872822263198e-9 ], "v": [ 6.621875994410871e-9 ], "w": [ -9.650086069290556e-9 ], "x": [ 7.065064366268145 ], "y": [ 4.079016573539908 ], "z": [ 14.999999942058622 ] }, { "legendgroup": "vector_56", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "0Cr(l:2)-->1Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.2987983420058695 ], "y": [ 7.138279074949196, 7.138279074045624 ], "z": [ 14.999999990309053, 14.999999988762927 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_56", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.4955211607237416e-9 ], "v": [ -1.807145114561637e-10 ], "w": [ -3.0922537879649757e-10 ], "x": [ 5.2987983420058695 ], "y": [ 7.138279074045624 ], "z": [ 14.999999988762927 ] }, { "legendgroup": "vector_57", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.7662658818186094 ], "y": [ -5.098771063125474, -5.098771062221902 ], "z": [ 14.999999990309053, 14.99999999185518 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_57", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.495521160598672e-9 ], "v": [ 1.807145117400521e-10 ], "w": [ 3.092253788901344e-10 ], "x": [ -1.7662658818186094 ], "y": [ -5.098771062221902 ], "z": [ 14.99999999185518 ] }, { "legendgroup": "vector_58", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.532531906080884 ], "y": [ -2.0395085286068064, -2.0395085617161866 ], "z": [ 14.999999990309053, 15.000000038559484 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_58", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.5954872822898473e-9 ], "v": [ -6.621875994336756e-9 ], "w": [ 9.650086069317025e-9 ], "x": [ -3.532531906080884 ], "y": [ -2.0395085617161866 ], "z": [ 15.000000038559484 ] }, { "legendgroup": "vector_59", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298797968775637, -5.298797950336005 ], "y": [ 1.019754005911861, 1.0197540318620815 ], "z": [ 14.999999990309053, 14.999999990451645 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_59", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 3.6879264766154298e-9 ], "v": [ 5.190044068092194e-9 ], "w": [ 2.8518494128109693e-11 ], "x": [ -5.298797950336005 ], "y": [ 1.0197540318620815 ], "z": [ 14.999999990451645 ] }, { "legendgroup": "vector_60", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662660769663145 ], "y": [ -5.098771063125474, -5.098771128564968 ], "z": [ 14.999999990309053, 15.00000011421979 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_60", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -3.0625463095044624e-8 ], "v": [ -1.3087898774269288e-8 ], "w": [ 2.4782147151169223e-8 ], "x": [ 1.7662660769663145 ], "y": [ -5.098771128564968 ], "z": [ 15.00000011421979 ] }, { "legendgroup": "vector_61", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, 5.767093727740014e-8 ], "y": [ -2.0395085286068064, -2.039508898140382 ], "z": [ 14.999999990309053, 14.999999746640492 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_61", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.4541075188339856e-8 ], "v": [ -7.390671514352989e-8 ], "w": [ -4.873371216139742e-8 ], "x": [ 5.767093727740014e-8 ], "y": [ -2.039508898140382 ], "z": [ 14.999999746640492 ] }, { "legendgroup": "vector_62", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.766265757959611 ], "y": [ 1.019754005911861, 1.0197534714453733 ], "z": [ 14.999999990309053, 14.999999765518012 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_62", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.227627850700238e-8 ], "v": [ -1.068932975563248e-7 ], "w": [ -4.4958208244648114e-8 ], "x": [ -1.766265757959611 ], "y": [ 1.0197534714453733 ], "z": [ 14.999999765518012 ] }, { "legendgroup": "vector_63", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.5325319190583206, -3.532531846763367 ], "y": [ 4.079016540430528, 4.079016550132256 ], "z": [ 14.999999990309053, 15.00000012220913 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_63", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.4458990726765413e-8 ], "v": [ 1.9403456419760748e-9 ], "w": [ 2.6380015198404554e-8 ], "x": [ -3.532531846763367 ], "y": [ 4.079016550132256 ], "z": [ 15.00000012220913 ] }, { "legendgroup": "vector_64", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.2987983993482235 ], "y": [ -5.098771063125474, -5.098770989721811 ], "z": [ 14.999999990309053, 14.999999904280154 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_64", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.3963991838436965e-8 ], "v": [ 1.468073249718889e-8 ], "w": [ -1.7205780086110664e-8 ], "x": [ 5.2987983993482235 ], "y": [ -5.098770989721811 ], "z": [ 14.999999904280154 ] }, { "legendgroup": "vector_65", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.532532739652052 ], "y": [ -2.0395085286068064, -2.039508410186239 ], "z": [ 14.999999990309053, 15.000001486019906 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_65", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 9.19682210169728e-8 ], "v": [ 2.3684113499474737e-8 ], "w": [ 2.9914217044837827e-7 ], "x": [ 3.532532739652052 ], "y": [ -2.039508410186239 ], "z": [ 15.000001486019906 ] }, { "legendgroup": "vector_66", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7663365544339902 ], "y": [ 1.019754005911861, 1.0197663394460021 ], "z": [ 14.999999990309053, 14.999938559398071 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_66", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000014064868072039428 ], "v": [ 0.000002466706828206655 ], "w": [ -0.000012286182196250515 ], "x": [ 1.7663365544339902 ], "y": [ 1.0197663394460021 ], "z": [ 14.999938559398071 ] }, { "legendgroup": "vector_67", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.8037631321909942e-7, -1.380115263859157e-7 ], "y": [ 4.079016540430528, 4.079017273919016 ], "z": [ 14.999999990309053, 15.000001135150473 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_67", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -6.367756792100302e-8 ], "v": [ 1.4669769757501532e-7 ], "w": [ 2.289682839792947e-7 ], "x": [ -1.380115263859157e-7 ], "y": [ 4.079017273919016 ], "z": [ 15.000001135150473 ] }, { "legendgroup": "vector_68", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662658693410036, -1.766265920649753 ], "y": [ 7.138279074949196, 7.138278981754607 ], "z": [ 14.999999990309053, 14.999999886662847 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_68", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.0261749915002873e-8 ], "v": [ -1.8638917701769076e-8 ], "w": [ -2.0729241117970038e-8 ], "x": [ -1.766265920649753 ], "y": [ 7.138278981754607 ], "z": [ 14.999999886662847 ] }, { "legendgroup": "vector_69", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.831330455522062 ], "y": [ -5.098771063125474, -5.098771062604959 ], "z": [ 14.999999990309053, 15.000000001433499 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_69", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.311833274629725e-9 ], "v": [ 1.0410298549642877e-10 ], "w": [ 2.224888978199016e-9 ], "x": [ 8.831330455522062 ], "y": [ -5.098771062604959 ], "z": [ 15.000000001433499 ] }, { "legendgroup": "vector_70", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.06506370158999 ], "y": [ -2.0395085286068064, -2.0395081121192153 ], "z": [ 14.999999990309053, 14.999999983091763 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_70", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.3553111830301527e-7 ], "v": [ 8.329751825615738e-8 ], "w": [ -1.4434580128261853e-9 ], "x": [ 7.06506370158999 ], "y": [ -2.0395081121192153 ], "z": [ 14.999999983091763 ] }, { "legendgroup": "vector_71", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298764066893415 ], "y": [ 1.019754005911861, 1.0197455078041986 ], "z": [ 14.999999990309053, 15.000025190929483 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_71", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000006852526969860009 ], "v": [ -0.0000016996215324786672 ], "w": [ 0.000005040124085751649 ], "x": [ 5.298764066893415 ], "y": [ 1.0197455078041986 ], "z": [ 15.000025190929483 ] }, { "legendgroup": "vector_72", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5324914825834197 ], "y": [ 4.079016540430528, 4.079017115414214 ], "z": [ 14.999999990309053, 15.000034851358578 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_72", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000008159445505421444 ], "v": [ 1.1499673706772545e-7 ], "w": [ 0.000006972209904966765 ], "x": [ 3.5324914825834197 ], "y": [ 4.079017115414214 ], "z": [ 15.000034851358578 ] }, { "legendgroup": "vector_73", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.76626623009363, 1.7662662028631797 ], "y": [ 7.138279074949196, 7.13827883775639 ], "z": [ 14.999999990309053, 15.00000001072512 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_73", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.4460900589341075e-9 ], "v": [ -4.743856116954061e-8 ], "w": [ 4.083213236064353e-9 ], "x": [ 1.7662662028631797 ], "y": [ 7.13827883775639 ], "z": [ 15.00000001072512 ] }, { "legendgroup": "vector_74", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.803763127750102e-7, 1.5505618134647505e-7 ], "y": [ 10.197541609467862, 10.197541602087847 ], "z": [ 14.999999990309053, 14.999999999556195 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_74", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.064026285707032e-9 ], "v": [ -1.476002948608384e-9 ], "w": [ 1.8494283246407259e-9 ], "x": [ 1.5505618134647505e-7 ], "y": [ 10.197541602087847 ], "z": [ 14.999999999556195 ] }, { "legendgroup": "vector_75", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.597596478680213, 10.597596451253896 ], "y": [ -2.0395085286068064, -2.039508493024168 ], "z": [ 14.999999990309053, 14.999999973302733 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_75", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.48526354023232e-9 ], "v": [ 7.11652767846029e-9 ], "w": [ -3.401263914843301e-9 ], "x": [ 10.597596451253896 ], "y": [ -2.039508493024168 ], "z": [ 14.999999973302733 ] }, { "legendgroup": "vector_76", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962897, 8.831330542630623 ], "y": [ 1.019754005911861, 1.019754465163502 ], "z": [ 14.999999990309053, 15.000000184307183 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_76", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.2733545041110996e-8 ], "v": [ 9.185032816781135e-8 ], "w": [ 3.879962605084789e-8 ], "x": [ 8.831330542630623 ], "y": [ 1.019754465163502 ], "z": [ 15.000000184307183 ] }, { "legendgroup": "vector_77", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.065064285108514 ], "y": [ 4.079016540430528, 4.079015982826908 ], "z": [ 14.999999990309053, 14.99999760589668 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_77", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.8827413446228765e-8 ], "v": [ -1.1152072407967267e-7 ], "w": [ -4.768824744758726e-7 ], "x": [ 7.065064285108514 ], "y": [ 4.079015982826908 ], "z": [ 14.99999760589668 ] }, { "legendgroup": "vector_78", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298798329528264, 5.298798958737039 ], "y": [ 7.138279074949196, 7.138279260444537 ], "z": [ 14.999999990309053, 15.000000221084367 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_78", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 1.2584175502805932e-7 ], "v": [ 3.7099068188887965e-8 ], "w": [ 4.6155062767926335e-8 ], "x": [ 5.298798958737039 ], "y": [ 7.138279260444537 ], "z": [ 15.000000221084367 ] }, { "legendgroup": "vector_79", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325322798109466, 3.5325322956180663 ], "y": [ 10.197541609467862, 10.197541614214591 ], "z": [ 14.999999990309053, 14.999999965735038 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_79", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 3.1614239439942813e-9 ], "v": [ 9.493457150482981e-10 ], "w": [ -4.9148032413725945e-9 ], "x": [ 3.5325322956180663 ], "y": [ 10.197541614214591 ], "z": [ 14.999999965735038 ] }, { "legendgroup": "vector_80", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363862528397531, 12.363862515439392 ], "y": [ 1.019754005911861, 1.0197539789083403 ], "z": [ 14.999999990309053, 14.999999979080918 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_80", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -2.5916280596938014e-9 ], "v": [ -5.40070415213009e-9 ], "w": [ -2.24562689558686e-9 ], "x": [ 12.363862515439392 ], "y": [ 1.0197539789083403 ], "z": [ 14.999999979080918 ] }, { "legendgroup": "vector_81", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.597596478680215, 10.597596414710003 ], "y": [ 4.079016540430528, 4.079016525397943 ], "z": [ 14.999999990309053, 14.999999967773267 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_81", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -1.2794042324026838e-8 ], "v": [ -3.006516910462731e-9 ], "w": [ -4.507157295840804e-9 ], "x": [ 10.597596414710003 ], "y": [ 4.079016525397943 ], "z": [ 14.999999967773267 ] }, { "legendgroup": "vector_82", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831330428962898, 8.831330545884379 ], "y": [ 7.138279074949196, 7.13827917454779 ], "z": [ 14.999999990309053, 14.999999946663799 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_82", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 2.3384296249514156e-8 ], "v": [ 1.9919718926650833e-8 ], "w": [ -8.7290508909345e-9 ], "x": [ 8.831330545884379 ], "y": [ 7.13827917454779 ], "z": [ 14.999999946663799 ] }, { "legendgroup": "vector_83", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->0Cr(l:2), ruc:[3 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065064379245581, 7.0650643836827935 ], "y": [ 10.197541609467862, 10.197541618092922 ], "z": [ 14.999999990309053, 14.9999999811769 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_83", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 8.874424049399445e-10 ], "v": [ 1.7250120533913068e-9 ], "w": [ -1.8264305832295426e-9 ], "x": [ 7.0650643836827935 ], "y": [ 10.197541618092922 ], "z": [ 14.9999999811769 ] }, { "legendgroup": "vector_84", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-3 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003436, -3.5324759059738846 ], "y": [ -4.079047401989241, -4.078995180593329 ], "z": [ 14.999999980438607, 15.000032958680352 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_84", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 6.296059102769073e-7 ], "v": [ 0.000010444279182493759 ], "w": [ 0.000006595648348937436 ], "x": [ -3.5324759059738846 ], "y": [ -4.078995180593329 ], "z": [ 15.000032958680352 ] }, { "legendgroup": "vector_85", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-3 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298745103720753, -5.29869883042084 ], "y": [ -1.0197848674705732, -1.019803060766219 ], "z": [ 14.999999980438607, 14.999967130018575 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_85", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000009254659982728265 ], "v": [ -0.000003638659129150028 ], "w": [ -0.000006570084006331112 ], "x": [ -5.29869883042084 ], "y": [ -1.019803060766219 ], "z": [ 14.999967130018575 ] }, { "legendgroup": "vector_86", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.766319095148516, 1.7663575579128565 ], "y": [ -7.138309936507907, -7.138282513799595 ], "z": [ 14.999999980438607, 15.00003296411589 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_86", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000007692552868121701 ], "v": [ 0.000005484541662429772 ], "w": [ 0.000006596735456661511 ], "x": [ 1.7663575579128565 ], "y": [ -7.138282513799595 ], "z": [ 15.00003296411589 ] }, { "legendgroup": "vector_87", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 0.0009105315616652303 ], "y": [ -4.079047401989241, -4.077547469206953 ], "z": [ 14.999999980438607, 15.002678659500546 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_87", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.00017149722609331372 ], "v": [ 0.0002999865564574793 ], "w": [ 0.000535735812387606 ], "x": [ 0.0009105315616652303 ], "y": [ -4.077547469206953 ], "z": [ 15.002678659500546 ] }, { "legendgroup": "vector_88", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662130042861186, -1.7722925692517078 ], "y": [ -1.0197848674705732, -1.0234964775905395 ], "z": [ 14.999999980438607, 14.999946027300005 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_88", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00121591299311785 ], "v": [ -0.0007423220239932863 ], "w": [ -0.00001079062772041835 ], "x": [ -1.7722925692517078 ], "y": [ -1.0234964775905395 ], "z": [ 14.999946027300005 ] }, { "legendgroup": "vector_89", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003435, -3.530715590015226 ], "y": [ 2.0394776670480943, 2.039506201768259 ], "z": [ 14.999999980438607, 14.997342644130926 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_89", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0003526927976418424 ], "v": [ 0.000005706944032908656 ], "w": [ -0.0005314672615364376 ], "x": [ -3.530715590015226 ], "y": [ 2.039506201768259 ], "z": [ 14.997342644130926 ] }, { "legendgroup": "vector_90", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -5.298745103720751, -5.298698389095329 ], "y": [ 5.098740201566762, 5.098759183498425 ], "z": [ 14.999999980438607, 14.999967791908412 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_90", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000009342925084353787 ], "v": [ 0.0000037963863325426455 ], "w": [ -0.0000064377060388909324 ], "x": [ -5.298698389095329 ], "y": [ 5.098759183498425 ], "z": [ 14.999967791908412 ] }, { "legendgroup": "vector_91", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -3 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.29885119458315, 5.298813318579676 ], "y": [ -7.138309936507907, -7.138284739390518 ], "z": [ 14.999999980438607, 14.999967125502012 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_91", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000007575200694674574 ], "v": [ 0.0000050394234777970715 ], "w": [ -0.000006570987319085731 ], "x": [ 5.298813318579676 ], "y": [ -7.138284739390518 ], "z": [ 14.999967125502012 ] }, { "legendgroup": "vector_92", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5325252094796618 ], "y": [ -4.079047401989241, -4.085835975739429 ], "z": [ 14.999999980438607, 14.999946409902043 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_92", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000011987077234068229 ], "v": [ -0.001357714750037593 ], "w": [ -0.000010714107312982303 ], "x": [ 3.5325252094796618 ], "y": [ -4.085835975739429 ], "z": [ 14.999946409902043 ] }, { "legendgroup": "vector_93", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7663190951485155, 1.8463801720107156 ], "y": [ -1.0197848674705732, -0.8869794075412287 ], "z": [ 14.999999980438607, 15.006065031529573 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_93", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.016012215372440037 ], "v": [ 0.026561091985868902 ], "w": [ 0.0012130102181932762 ], "x": [ 1.8463801720107156 ], "y": [ -0.8869794075412287 ], "z": [ 15.006065031529573 ] }, { "legendgroup": "vector_94", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 0.1510577860421442 ], "y": [ 2.0394776670480943, 2.0399353265593136 ], "z": [ 14.999999980438607, 14.996074867435725 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_94", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.030200948122189108 ], "v": [ 0.00009153190224390546 ], "w": [ -0.0007850226005762939 ], "x": [ 0.1510577860421442 ], "y": [ 2.0399353265593136 ], "z": [ 14.996074867435725 ] }, { "legendgroup": "vector_95", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ -1.7662130042861186, -1.7722536752392228 ], "y": [ 5.098740201566762, 5.102405871936294 ], "z": [ 14.999999980438607, 14.999999588056253 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_95", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.0012081341906208243 ], "v": [ 0.0007331340739063971 ], "w": [ -7.847647066933068e-8 ], "x": [ -1.7722536752392228 ], "y": [ 5.102405871936294 ], "z": [ 14.999999588056253 ] }, { "legendgroup": "vector_96", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[-1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ -3.532479054003435, -3.532476548054016 ], "y": [ 8.158002736085429, 8.15795086237045 ], "z": [ 14.999999980438607, 15.000032168115117 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_96", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 5.011898838323548e-7 ], "v": [ -0.00001037474299561284 ], "w": [ 0.000006437535302124686 ], "x": [ -3.532476548054016 ], "y": [ 8.15795086237045 ], "z": [ 15.000032168115117 ] }, { "legendgroup": "vector_97", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 0 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 7.064282600794426 ], "y": [ -4.079047401989241, -4.0775299324030225 ], "z": [ 14.999999980438607, 14.997342447399554 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_97", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.00016692870120801103 ], "v": [ 0.00030349391724367316 ], "w": [ -0.0005315066078106767 ], "x": [ 7.064282600794426 ], "y": [ -4.0775299324030225 ], "z": [ 14.997342447399554 ] }, { "legendgroup": "vector_98", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 0 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 5.220797563874424 ], "y": [ -1.0197848674705732, -0.8873789051844814 ], "z": [ 14.999999980438607, 14.996062109532314 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_98", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.015610726141745076 ], "v": [ 0.026481192457218354 ], "w": [ -0.0007875741812587149 ], "x": [ 5.220797563874424 ], "y": [ -0.8873789051844814 ], "z": [ 14.996062109532314 ] }, { "legendgroup": "vector_99", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[0 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.7663190951485155, 1.8443727258572435 ], "y": [ 5.098740201566762, 4.966334239280669 ], "z": [ 14.999999980438607, 15.0039378513449 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_99", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.015610726141745593 ], "v": [ -0.026481192457218573 ], "w": [ 0.0007875741812585074 ], "x": [ 1.8443727258572435 ], "y": [ 4.966334239280669 ], "z": [ 15.0039378513449 ] }, { "legendgroup": "vector_100", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[0 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 0.000053045431198661674, 0.0008876889372386647 ], "y": [ 8.158002736085429, 8.15648526649921 ], "z": [ 14.999999980438607, 15.002657513477661 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_100", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0001669287012080006 ], "v": [ -0.0003034939172436831 ], "w": [ 0.0005315066078106672 ], "x": [ 0.0008876889372386647 ], "y": [ 8.15648526649921 ], "z": [ 15.002657513477661 ] }, { "legendgroup": "vector_101", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 1 -2 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.59764683778568 ], "y": [ -4.079047401989241, -4.078995528274263 ], "z": [ 14.999999980438607, 14.999967792762098 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_101", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -5.011898838325242e-7 ], "v": [ 0.000010374742995610697 ], "w": [ -0.0000064375353021248935 ], "x": [ 10.59764683778568 ], "y": [ -4.078995528274263 ], "z": [ 14.999967792762098 ] }, { "legendgroup": "vector_102", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 1 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831383294017783, 8.837423964970887 ], "y": [ -1.0197848674705732, -1.0234505378401053 ], "z": [ 14.999999980438607, 15.000000372820962 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_102", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.0012081341906208347 ], "v": [ -0.0007331340739064058 ], "w": [ 7.847647067268705e-8 ], "x": [ 8.837423964970887 ], "y": [ -1.0234505378401053 ], "z": [ 15.000000372820962 ] }, { "legendgroup": "vector_103", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 6.91411250368952 ], "y": [ 2.0394776670480943, 2.039020007536875 ], "z": [ 14.999999980438607, 15.00392509344149 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_103", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.03020094812218919 ], "v": [ -0.00009153190224384447 ], "w": [ 0.0007850226005763303 ], "x": [ 6.91411250368952 ], "y": [ 2.039020007536875 ], "z": [ 15.00392509344149 ] }, { "legendgroup": "vector_104", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 5.218790117720949 ], "y": [ 5.098740201566762, 4.965934741637418 ], "z": [ 14.999999980438607, 14.99393492934764 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_104", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.01601221537243997 ], "v": [ -0.026561091985868812 ], "w": [ -0.001213010218193447 ], "x": [ 5.218790117720949 ], "y": [ 4.965934741637418 ], "z": [ 14.99393492934764 ] }, { "legendgroup": "vector_105", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5326450802520024 ], "y": [ 8.158002736085429, 8.164791309835616 ], "z": [ 14.999999980438607, 15.000053550975172 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_105", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000011987077234060583 ], "v": [ 0.0013577147500375886 ], "w": [ 0.000010714107312974797 ], "x": [ 3.5326450802520024 ], "y": [ 8.164791309835616 ], "z": [ 15.000053550975172 ] }, { "legendgroup": "vector_106", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[1 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 1.766319095148515, 1.7663569711519884 ], "y": [ 11.217265270604097, 11.217240073486709 ], "z": [ 14.999999980438607, 15.000032835375203 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_106", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.000007575200694675543 ], "v": [ -0.000005039423477796233 ], "w": [ 0.000006570987319085372 ], "x": [ 1.7663569711519884 ], "y": [ 11.217240073486709 ], "z": [ 15.000032835375203 ] }, { "legendgroup": "vector_107", "line": { "color": "blue", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[ 2 -1 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363915393452416, 12.363868678826995 ], "y": [ -1.0197848674705732, -1.019803849402236 ], "z": [ 14.999999980438607, 15.000032168968803 ] }, { "colorscale": [ [ 0, "blue" ], [ 1, "blue" ] ], "legendgroup": "vector_107", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000009342925084354185 ], "v": [ -0.0000037963863325426565 ], "w": [ 0.0000064377060388911425 ], "x": [ 12.363868678826995 ], "y": [ -1.019803849402236 ], "z": [ 15.000032168968803 ] }, { "legendgroup": "vector_108", "line": { "color": "purple", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 0 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.59588587974689 ], "y": [ 2.0394776670480943, 2.03944913232793 ], "z": [ 14.999999980438607, 15.002657316746289 ] }, { "colorscale": [ [ 0, "purple" ], [ 1, "purple" ] ], "legendgroup": "vector_108", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.0003526927976418532 ], "v": [ -0.0000057069440329158595 ], "w": [ 0.0005314672615364327 ], "x": [ 10.59588587974689 ], "y": [ 2.03944913232793 ], "z": [ 15.002657316746289 ] }, { "legendgroup": "vector_109", "line": { "color": "orange", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 8.831383294017783, 8.837462858983372 ], "y": [ 5.098740201566762, 5.102451811686728 ], "z": [ 14.999999980438607, 15.00005393357721 ] }, { "colorscale": [ [ 0, "orange" ], [ 1, "orange" ] ], "legendgroup": "vector_109", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ 0.001215912993117858 ], "v": [ 0.0007423220239932968 ], "w": [ 0.000010790627720422859 ], "x": [ 8.837462858983372 ], "y": [ 5.102451811686728 ], "z": [ 15.00005393357721 ] }, { "legendgroup": "vector_110", "line": { "color": "cyan", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 7.065117244300466, 7.0642597581699995 ], "y": [ 8.158002736085429, 8.156502803303141 ], "z": [ 14.999999980438607, 14.997321301376669 ] }, { "colorscale": [ [ 0, "cyan" ], [ 1, "cyan" ] ], "legendgroup": "vector_110", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.0001714972260933192 ], "v": [ -0.00029998655645748195 ], "w": [ -0.0005357358123876065 ], "x": [ 7.0642597581699995 ], "y": [ 8.156502803303141 ], "z": [ 14.997321301376669 ] }, { "legendgroup": "vector_111", "line": { "color": "magenta", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[2 3 0]", "showlegend": true, "type": "scatter3d", "x": [ 5.298851194583149, 5.298812731818808 ], "y": [ 11.217265270604097, 11.217237847895785 ], "z": [ 14.999999980438607, 14.999966996761325 ] }, { "colorscale": [ [ 0, "magenta" ], [ 1, "magenta" ] ], "legendgroup": "vector_111", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000007692552868122728 ], "v": [ -0.000005484541662431283 ], "w": [ -0.000006596735456662047 ], "x": [ 5.298812731818808 ], "y": [ 11.217237847895785 ], "z": [ 14.999966996761325 ] }, { "legendgroup": "vector_112", "line": { "color": "red", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[3 1 0]", "showlegend": true, "type": "scatter3d", "x": [ 12.363915393452418, 12.363869120152504 ], "y": [ 5.098740201566762, 5.098758394862408 ], "z": [ 14.999999980438607, 15.00003283085864 ] }, { "colorscale": [ [ 0, "red" ], [ 1, "red" ] ], "legendgroup": "vector_112", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -0.000009254659982728317 ], "v": [ 0.0000036386591291496337 ], "w": [ 0.000006570084006329995 ], "x": [ 12.363869120152504 ], "y": [ 5.098758394862408 ], "z": [ 15.00003283085864 ] }, { "legendgroup": "vector_113", "line": { "color": "green", "width": 5 }, "mode": "lines", "name": "1Cr(l:2)-->1Cr(l:2), ruc:[3 2 0]", "showlegend": true, "type": "scatter3d", "x": [ 10.5976493437351, 10.597646195705549 ], "y": [ 8.158002736085429, 8.157950514689515 ], "z": [ 14.999999980438607, 14.999967002196863 ] }, { "colorscale": [ [ 0, "green" ], [ 1, "green" ] ], "legendgroup": "vector_113", "showlegend": false, "showscale": false, "sizemode": "absolute", "sizeref": 0.015518972601340556, "type": "cone", "u": [ -6.296059102769364e-7 ], "v": [ -0.000010444279182494866 ], "w": [ -0.0000065956483489352655 ], "x": [ 10.597646195705549 ], "y": [ 8.157950514689515 ], "z": [ 14.999967002196863 ] }, { "marker": { "color": "red", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "Center:0Cr(l:2)", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417108 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -14.130181082417108 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417108 -12.237019793299043 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -14.130181082417108 ], "y": [ 0.00003034477562777159, -12.237019793299043 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.662713181851743 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -17.662713181851743 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.662713181851743 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -17.662713181851743 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113205 -18.355544862336377 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ -3.532584784113205 ], "y": [ -18.355544862336377 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113205 -18.355544862336377 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532584784113205 ], "y": [ 0.00003034477562777159, -18.355544862336377 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.065116883547839 ], "y": [ 0.00003034477562777159, -12.237019793299043 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -10.597648982982474 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -14.130181082417106 ], "y": [ 0.00003034477562777159, 0.00003034477562777159 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66271318185174 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -17.66271318185174 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66271318185174 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -17.66271318185174 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560623 -18.355544862336377 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 3.5324794147560623 ], "y": [ -18.355544862336377 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560623 -18.355544862336377 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5324794147560623 ], "y": [ 0.00003034477562777159, -18.355544862336377 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -0.00005268467857207515 ], "y": [ 0.00003034477562777159, -12.237019793299043 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532584784113206 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.065116883547839 ], "y": [ 0.00003034477562777159, 0.00003034477562777159 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -10.597648982982474 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130181082417106 12.237080482850297 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -14.130181082417106 ], "y": [ 0.00003034477562777159, 12.237080482850297 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.0650115141906955 ], "y": [ 0.00003034477562777159, -12.237019793299043 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5324794147560614 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532584784113206 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.065116883547839 ], "y": [ 0.00003034477562777159, 12.237080482850297 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 14.130075713059963 ], "y": [ 0.00003034477562777159, -12.237019793299043 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 10.59754361362533 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.0650115141906955 ], "y": [ 0.00003034477562777159, 0.00003034477562777159 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5324794147560614 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -0.00005268467857207515 ], "y": [ 0.00003034477562777159, 12.237080482850297 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ -3.5325847841132068 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.5325847841132068 ], "y": [ 0.00003034477562777159, 18.35560555188763 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 17.662607812494596 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 17.662607812494596 ], "y": [ 0.00003034477562777159, -6.118494724261708 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 14.130075713059963 ], "y": [ 0.00003034477562777159, 0.00003034477562777159 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 10.59754361362533 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.0650115141906955 ], "y": [ 0.00003034477562777159, 12.237080482850297 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 3.5324794147560605 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5324794147560605 ], "y": [ 0.00003034477562777159, 18.35560555188763 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 17.6626078124946 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 17.6626078124946 ], "y": [ 0.00003034477562777159, 6.118555413812962 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 14.130075713059965 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 14.130075713059965 ], "y": [ 0.00003034477562777159, 12.237080482850297 ], "z": [ 15.0000000001795, 15.0000000001795 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -3 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -16.31609754006391 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.0650111534380695 ], "y": [ 0.00003034477562777159, -16.31609754006391 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -10.597543252872704 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -10.597543252872704 ], "y": [ 0.00003034477562777159, -10.197572471026575 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -14.130075352307339 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -14.130075352307339 ], "y": [ 0.00003034477562777159, -4.079047401989241 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66260745174197 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 0 0]", "type": "scatter3d", "x": [ -17.66260745174197 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-17.66260745174197 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -17.66260745174197 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ 0.00005304543119954985 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 0.00005304543119954985 ], "y": [ 0.00003034477562777159, -16.31609754006391 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532479054003435 ], "y": [ 0.00003034477562777159, -10.197572471026575 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.0650111534380695 ], "y": [ 0.00003034477562777159, -4.079047401989241 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -10.597543252872702 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -14.130075352307335 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -14.130075352307335 ], "y": [ 0.00003034477562777159, 8.158002736085429 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 7.065117244300467 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.065117244300467 ], "y": [ 0.00003034477562777159, -16.31609754006391 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5325851448658323 ], "y": [ 0.00003034477562777159, -10.197572471026575 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 0.000053045431198661674 ], "y": [ 0.00003034477562777159, -4.079047401989241 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532479054003435 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -7.0650111534380695 ], "y": [ 0.00003034477562777159, 8.158002736085429 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -10.597543252872702 ], "y": [ 0.00003034477562777159, 14.276527805122765 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 10.5976493437351 ], "y": [ 0.00003034477562777159, -10.197572471026575 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.065117244300466 ], "y": [ 0.00003034477562777159, -4.079047401989241 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 0 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5325851448658323 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 0.000053045431198661674 ], "y": [ 0.00003034477562777159, 8.158002736085429 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, -3.532479054003435 ], "y": [ 0.00003034477562777159, 14.276527805122765 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 14.130181443169734 ], "y": [ 0.00003034477562777159, -4.079047401989241 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 10.5976493437351 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 7.065117244300466 ], "y": [ 0.00003034477562777159, 8.158002736085429 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 3.5325851448658323 ], "y": [ 0.00003034477562777159, 14.276527805122765 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 17.662713542604365 ], "y": [ 0.00003034477562777159, 2.0394776670480943 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 14.130181443169734 ], "y": [ 0.00003034477562777159, 8.158002736085429 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "marker": { "color": "red", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 0Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "line": { "color": "red" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.00005268467857207515, 10.5976493437351 ], "y": [ 0.00003034477562777159, 14.276527805122765 ], "z": [ 15.0000000001795, 14.999999980438607 ] }, { "marker": { "color": "green", "opacity": 0.8, "size": 10 }, "mode": "markers", "name": "Center:1Cr(l:2)", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 -12.237019793299043 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -7.065116883547839 ], "y": [ 2.0394776670480943, -12.237019793299043 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 -6.118494724261708 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -10.597648982982474 ], "y": [ 2.0394776670480943, -6.118494724261708 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -14.130181082417106 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130181082417106 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -14.130181082417106 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 -12.237019793299043 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -0.00005268467857207515 ], "y": [ 2.0394776670480943, -12.237019793299043 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 -6.118494724261708 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.532584784113206 ], "y": [ 2.0394776670480943, -6.118494724261708 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -7.065116883547839 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -10.597648982982474 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597648982982474 6.118555413812962 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -10.597648982982474 ], "y": [ 2.0394776670480943, 6.118555413812962 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 -12.237019793299043 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.0650115141906955 ], "y": [ 2.0394776670480943, -12.237019793299043 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 -6.118494724261708 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5324794147560614 ], "y": [ 2.0394776670480943, -6.118494724261708 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 0 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -0.00005268467857207515 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ -3.532584784113206 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532584784113206 6.118555413812962 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.532584784113206 ], "y": [ 2.0394776670480943, 6.118555413812962 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -7.065116883547839 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.065116883547839 12.237080482850297 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -7.065116883547839 ], "y": [ 2.0394776670480943, 12.237080482850297 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ -12.237019793299043 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 -12.237019793299043 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 14.130075713059963 ], "y": [ 2.0394776670480943, -12.237019793299043 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 -6.118494724261708 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.59754361362533 ], "y": [ 2.0394776670480943, -6.118494724261708 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.0650115141906955 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 3.5324794147560614 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560614 6.118555413812962 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5324794147560614 ], "y": [ 2.0394776670480943, 6.118555413812962 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ -0.00005268467857207515 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-5.268467857207515e-05 12.237080482850297 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -0.00005268467857207515 ], "y": [ 2.0394776670480943, 12.237080482850297 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ -3.5325847841132068 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.5325847841132068 18.35560555188763 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.5325847841132068 ], "y": [ 2.0394776670480943, 18.35560555188763 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 17.662607812494596 ], "y": [ -6.118494724261708 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662607812494596 -6.118494724261708 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 17.662607812494596 ], "y": [ 2.0394776670480943, -6.118494724261708 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 14.130075713059963 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059963 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 14.130075713059963 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 6.118555413812962 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.59754361362533 ], "y": [ 2.0394776670480943, 6.118555413812962 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 7.0650115141906955 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.0650115141906955 12.237080482850297 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.0650115141906955 ], "y": [ 2.0394776670480943, 12.237080482850297 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 3.5324794147560605 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5324794147560605 18.35560555188763 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5324794147560605 ], "y": [ 2.0394776670480943, 18.35560555188763 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195139911929232 3.034477562777159e-05 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 0 0]", "type": "scatter3d", "x": [ 21.195139911929232 ], "y": [ 0.00003034477562777159 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195139911929232 3.034477562777159e-05 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 21.195139911929232 ], "y": [ 2.0394776670480943, 0.00003034477562777159 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 17.6626078124946 ], "y": [ 6.118555413812962 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.6626078124946 6.118555413812962 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 17.6626078124946 ], "y": [ 2.0394776670480943, 6.118555413812962 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 14.130075713059965 ], "y": [ 12.237080482850297 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130075713059965 12.237080482850297 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 14.130075713059965 ], "y": [ 2.0394776670480943, 12.237080482850297 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 18.35560555188763 15.0000000001795]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "0Cr(l:2), ruc:[3 3 0]", "type": "scatter3d", "x": [ 10.59754361362533 ], "y": [ 18.35560555188763 ], "z": [ 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.59754361362533 18.35560555188763 15.0000000001795]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.59754361362533 ], "y": [ 2.0394776670480943, 18.35560555188763 ], "z": [ 14.999999980438607, 15.0000000001795 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -2 0]", "type": "scatter3d", "x": [ -10.597543252872704 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872704 -10.197572471026575 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -10.597543252872704 ], "y": [ 2.0394776670480943, -10.197572471026575 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-3 -1 0]", "type": "scatter3d", "x": [ -14.130075352307339 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307339 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -14.130075352307339 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -3 0]", "type": "scatter3d", "x": [ 0.00005304543119954985 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.304543119954985e-05 -16.31609754006391 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 0.00005304543119954985 ], "y": [ 2.0394776670480943, -16.31609754006391 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 -10.197572471026575 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.532479054003435 ], "y": [ 2.0394776670480943, -10.197572471026575 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 -1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -7.0650111534380695 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 0 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 2.0394776670480943 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -10.597543252872702 ], "y": [ 2.0394776670480943, 2.0394776670480943 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-2 1 0]", "type": "scatter3d", "x": [ -14.130075352307335 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-14.130075352307335 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -14.130075352307335 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -3 0]", "type": "scatter3d", "x": [ 7.065117244300467 ], "y": [ -16.31609754006391 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300467 -16.31609754006391 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.065117244300467 ], "y": [ 2.0394776670480943, -16.31609754006391 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 -10.197572471026575 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5325851448658323 ], "y": [ 2.0394776670480943, -10.197572471026575 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 -1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 0.000053045431198661674 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 0 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 2.0394776670480943 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.532479054003435 ], "y": [ 2.0394776670480943, 2.0394776670480943 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 1 0]", "type": "scatter3d", "x": [ -7.0650111534380695 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-7.0650111534380695 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -7.0650111534380695 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[-1 2 0]", "type": "scatter3d", "x": [ -10.597543252872702 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-10.597543252872702 14.276527805122765 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -10.597543252872702 ], "y": [ 2.0394776670480943, 14.276527805122765 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 -10.197572471026575 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.5976493437351 ], "y": [ 2.0394776670480943, -10.197572471026575 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 0 -1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.065117244300466 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 1 0]", "type": "scatter3d", "x": [ 0.000053045431198661674 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431198661674e-05 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 0.000053045431198661674 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[0 2 0]", "type": "scatter3d", "x": [ -3.532479054003435 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[-3.532479054003435 14.276527805122765 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, -3.532479054003435 ], "y": [ 2.0394776670480943, 14.276527805122765 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 -10.197572471026575 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -2 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ -10.197572471026575 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 -10.197572471026575 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 17.662713542604365 ], "y": [ 2.0394776670480943, -10.197572471026575 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 1 -1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 14.130181443169734 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 0 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 2.0394776670480943 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.5976493437351 ], "y": [ 2.0394776670480943, 2.0394776670480943 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 1 0]", "type": "scatter3d", "x": [ 7.065117244300466 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300466 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.065117244300466 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 2 0]", "type": "scatter3d", "x": [ 3.5325851448658323 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[3.5325851448658323 14.276527805122765 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 3.5325851448658323 ], "y": [ 2.0394776670480943, 14.276527805122765 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431197773496e-05 20.395052874160097 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[1 3 0]", "type": "scatter3d", "x": [ 0.000053045431197773496 ], "y": [ 20.395052874160097 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[5.3045431197773496e-05 20.395052874160097 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 0.000053045431197773496 ], "y": [ 2.0394776670480943, 20.395052874160097 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642038998 -4.079047401989241 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[ 2 -1 0]", "type": "scatter3d", "x": [ 21.195245642038998 ], "y": [ -4.079047401989241 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642038998 -4.079047401989241 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 21.195245642038998 ], "y": [ 2.0394776670480943, -4.079047401989241 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 0 0]", "type": "scatter3d", "x": [ 17.662713542604365 ], "y": [ 2.0394776670480943 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.662713542604365 2.0394776670480943 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 17.662713542604365 ], "y": [ 2.0394776670480943, 2.0394776670480943 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 1 0]", "type": "scatter3d", "x": [ 14.130181443169734 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[14.130181443169734 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 14.130181443169734 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 2 0]", "type": "scatter3d", "x": [ 10.5976493437351 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[10.5976493437351 14.276527805122765 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 10.5976493437351 ], "y": [ 2.0394776670480943, 14.276527805122765 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300465 20.395052874160097 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[2 3 0]", "type": "scatter3d", "x": [ 7.065117244300465 ], "y": [ 20.395052874160097 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[7.065117244300465 20.395052874160097 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 7.065117244300465 ], "y": [ 2.0394776670480943, 20.395052874160097 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642039005 8.158002736085429 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[3 1 0]", "type": "scatter3d", "x": [ 21.195245642039005 ], "y": [ 8.158002736085429 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[21.195245642039005 8.158002736085429 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 21.195245642039005 ], "y": [ 2.0394776670480943, 8.158002736085429 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.66271354260437 14.276527805122765 14.999999980438607]]", "marker": { "color": "green", "opacity": 0.5, "size": 5 }, "mode": "markers", "name": "1Cr(l:2), ruc:[3 2 0]", "type": "scatter3d", "x": [ 17.66271354260437 ], "y": [ 14.276527805122765 ], "z": [ 14.999999980438607 ] }, { "legendgroup": "pair 1Cr(l:2)-[[17.66271354260437 14.276527805122765 14.999999980438607]]", "line": { "color": "green" }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325851448658323, 17.66271354260437 ], "y": [ 2.0394776670480943, 14.276527805122765 ], "z": [ 14.999999980438607, 14.999999980438607 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, -3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 0 ], "y": [ 0, 0 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.065064198869267, 3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.065064198869267, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.5325320994346336, 3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 0, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.5325320994346336, -3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 0, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, 7.065064198869267 ], "y": [ 0, 0 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0, -3.5325320994346336 ], "y": [ 0, 6.118525069037335 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, 3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 30, 0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, 7.065064198869267 ], "y": [ 6.118525069037335, 0 ], "z": [ 30, 30 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.5325320994346336, -3.5325320994346336 ], "y": [ 6.118525069037335, 6.118525069037335 ], "z": [ 30, 30 ] } ], "layout": { "autosize": false, "height": 500, "scene": { "aspectmode": "data", "xaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "X Axis" } }, "yaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Y Axis" } }, "zaxis": { "gridwidth": 1, "showgrid": true, "title": { "text": "Z Axis" } } }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 1000 } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "system.plot_DMI(width=1000).add_traces(system.plot_pairs(connect=True).data)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": ".venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.10" } }, "nbformat": 4, "nbformat_minor": 2 }