from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = evaluate_with_lammpslib(
task_dict={},
potential_dataframe=potential_dataframe,
)
[jupyter-pyiron-2datomistics-2dloteusr2:00647] mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1: cannot open shared object file: No such file or directory (ignored)
The interatomic potential for Aluminium from Mishin named 1999--Mishin-Y--Al--LAMMPS--ipr1
is used in the evaluation
with LAMMPS evaluate_with_lammpslib()
.
The elastic constants and elastic moduli can be calculated using the ElasticMatrixWorkflow
:
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import ElasticMatrixWorkflow
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
workflow = ElasticMatrixWorkflow(
structure=bulk("Al", cubic=True),
num_of_point=5,
eps_range=0.005,
sqrt_eta=True,
fit_order=2,
)
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
fit_dict = workflow.analyse_structures(output_dict=result_dict)
print(fit_dict)
The ElasticMatrixWorkflow
takes an ase.atoms.Atoms
object as structure
input as well as the number of points
num_of_point
for each compression direction. Depending on the symmetry of the input structure
the number of
calculations required to calculate the elastic matrix changes. The compression and elongation range is defined by the
eps_range
parameter. Furthermore, sqrt_eta
and fit_order
describe how the change in energy over compression and
elongation is fitted to calculate the resulting pressure.
The EnergyVolumeCurveWorkflow
can be used to calculate the equilibrium properties: equilibrium volume, equilibrium
energy, equilibrium bulk modulus and the pressure derivative of the equilibrium bulk modulus.
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import EnergyVolumeCurveWorkflow
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
workflow = EnergyVolumeCurveWorkflow(
structure=bulk("Al", cubic=True),
num_points=11,
fit_type="polynomial",
fit_order=3,
vol_range=0.05,
axes=("x", "y", "z"),
strains=None,
)
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
fit_dict = workflow.analyse_structures(output_dict=result_dict)
print(fit_dict)
{'b_prime_eq': 1.279502459079921, 'bulkmodul_eq': 77.7250135953191, 'volume_eq': 66.43019853103964, 'energy_eq': -13.43996804374383, 'fit_dict': {'fit_type': 'polynomial', 'least_square_error': 3.225313797039607e-10, 'poly_fit': array([-4.17645808e-05, 1.19746500e-02, -1.03803906e+00, 1.49168639e+01]), 'fit_order': 3}, 'energy': [-13.398169481534445, -13.413389552957456, -13.425112589013958, -13.433411420804067, -13.438357630783006, -13.439999952539933, -13.438383476946305, -13.433607982916406, -13.425774537190858, -13.414961805921427, -13.401233093668836], 'volume': [63.10861874999998, 63.77291999999998, 64.43722124999998, 65.1015225, 65.76582375000004, 66.43012500000002, 67.09442624999994, 67.75872750000002, 68.42302874999999, 69.08732999999997, 69.75163125000002]}
The input parameters for the EnergyVolumeCurveWorkflow
in addition to the ase.atoms.Atoms
object defined
as structure
are:
num_points
the number of strains to calculate energies and volumes.fit_type
the type of the fit which should be used to calculate the equilibrium properties. This can either be a
polynomial
fit or a specific equation of state like the Birch equation (birch
), the Birch-Murnaghan equation
(birchmurnaghan
) the Murnaghan equation (murnaghan
), the Pourier Tarnatola eqaution (pouriertarantola
) or the
Vinet equation (vinet
).fit_order
for the polynomial
fit type the order of the polynomial can be set, for the other fit types this
parameter is ignored.vol_range
specifies the amount of compression and elongation to be applied relative to the absolute volume.axes
specifies the axes which are compressed, typically a uniform compression is applied.strains
specifies the strains directly rather than deriving them from the range of volume compression vol_range
.Beyond calculating the equilibrium properties the EnergyVolumeCurveWorkflow
can also be used to calculate the thermal
properties using the Moruzzi, V. L. et al. model:
tp_dict = workflow.get_thermal_properties(
t_min=1,
t_max=1500,
t_step=50,
temperatures=None,
constant_volume=False,
)
print(tp_dict)
{'temperatures': array([ 1, 51, 101, 151, 201, 251, 301, 351, 401, 451, 501, 551, 601, 651, 701, 751, 801, 851, 901, 951, 1001, 1051, 1101, 1151, 1201, 1251, 1301, 1351, 1401, 1451, 1501]), 'volumes': array([66.48459155, 66.48492729, 66.48841343, 66.49613572, 66.50654263, 66.51846055, 66.53126421, 66.5446199 , 66.55833931, 66.57230985, 66.58646057, 66.6007448 , 66.61513063, 66.6295956 , 66.64412341, 66.65870199, 66.6733222 , 66.68797701, 66.70266093, 66.71736958, 66.73209946, 66.74684773, 66.76161205, 66.77639048, 66.79118142, 66.8059835 , 66.82079558, 66.83561668, 66.85044595, 66.86528267, 66.88012622]), 'free_energy': array([ 0.18879418, 0.18840183, 0.18352524, 0.16909367, 0.1440755 , 0.10931095, 0.06593656, 0.01498215, -0.04269081, -0.1063728 , -0.1754776 , -0.24951635, -0.328077 , -0.41080851, -0.49740877, -0.58761537, -0.68119851, -0.77795536, -0.87770572, -0.98028844, -1.08555864, -1.19338539, -1.3036498 , -1.41624343, -1.53106703, -1.6480294 , -1.76704645, -1.88804043, -2.01093923, -2.13567578, -2.26218757]), 'entropy': array([ 0.75685476, 5.08219062, 18.62461552, 38.05446426, 57.6693229 , 75.37710506, 90.99476554, 104.78762778, 117.06473011, 128.09164494, 138.08127289, 147.20167195, 155.58579193, 163.33970927, 170.54896552, 177.28330938, 183.60022562, 189.54757244, 195.16556897, 200.48830826, 205.54492122, 210.36048158, 214.95671661, 219.35257076, 223.56465688, 227.60762034, 231.49443548, 235.23664867, 238.84457908, 242.32748555, 244.0403182 ]), 'heat_capacity': array([8.65067172e-02, 9.11255799e+00, 3.33019964e+01, 5.89575081e+01, 7.50185080e+01, 8.36468610e+01, 8.85256734e+01, 9.15055757e+01, 9.34491088e+01, 9.47846079e+01, 9.57412353e+01, 9.64498999e+01, 9.69896043e+01, 9.74102601e+01, 9.77446368e+01, 9.80149634e+01, 9.82367471e+01, 9.84210719e+01, 9.85760297e+01, 9.87076399e+01, 9.88204550e+01, 9.89179695e+01, 9.90029019e+01, 9.90773926e+01, 9.91431454e+01, 9.92015302e+01, 9.92536586e+01, 9.93004401e+01, 9.93426247e+01, nan, nan])}
Or alternatively directly calculate the thermal expansion:
thermal_properties_dict = workflow.get_thermal_properties(
t_min=1,
t_max=1500,
t_step=50,
constant_volume=False,
output_keys=["temperatures", "volumes"],
)
temperatures, volumes = (
thermal_properties_dict["temperatures"],
thermal_properties_dict["volumes"],
)
The Moruzzi, V. L. et al. model is a quantum mechanical approximation, so the equilibrium volume at 0K is not the same as the equilibrium volume calculated by fitting the equation of state.
Just like the structure optimization also the molecular dynamics calculation can either be implemented inside the
simulation code or in the atomistics
package. The latter has the advantage that it is the same implementation for all
different simulation codes, while the prior has the advantage that it is usually faster and computationally more efficient.
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_langevin_with_lammpslib,
get_potential_by_name,
)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = calc_molecular_dynamics_langevin_with_lammpslib(
structure=bulk("Al", cubic=True).repeat([10, 10, 10]),
potential_dataframe=potential_dataframe,
Tstart=100,
Tstop=100,
Tdamp=0.1,
run=100,
thermo=10,
timestep=0.001,
seed=4928459,
dist="gaussian",
output_keys=(
"positions",
"cell",
"forces",
"temperature",
"energy_pot",
"energy_tot",
"pressure",
"velocities",
),
)
In addition to the typical LAMMPS input parameters like the atomistic structure structure
as ase.atoms.Atoms
object
and the pandas.DataFrame
for the interatomic potential potential_dataframe
are:
Tstart
start temperatureTstop
end temperatureTdamp
temperature damping parameterrun
number of molecular dynamics steps to be executed during one temperature stepthermo
refresh rate for the thermo dynamic properties, this should typically be the same as the number of molecular
dynamics steps.timestep
time step - typically 1fs defined as 0.001
.seed
random seed for the molecular dynamicsdist
initial velocity distributionlmp
Lammps library instance as pylammpsmpi.LammpsASELibrary
objectoutput
the output quantities which are extracted from the molecular dynamics simulationCanonical ensemble (nvt) - volume and temperature constraints molecular dynamics:
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_nvt_with_lammpslib,
get_potential_by_name,
)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = calc_molecular_dynamics_nvt_with_lammpslib(
structure=bulk("Al", cubic=True).repeat([10, 10, 10]),
potential_dataframe=potential_dataframe,
Tstart=100,
Tstop=100,
Tdamp=0.1,
run=100,
thermo=10,
timestep=0.001,
seed=4928459,
dist="gaussian",
output_keys=(
"positions",
"cell",
"forces",
"temperature",
"energy_pot",
"energy_tot",
"pressure",
),
)
In addition to the typical LAMMPS input parameters like the atomistic structure structure
as ase.atoms.Atoms
object
and the pandas.DataFrame
for the interatomic potential potential_dataframe
are:
Tstart
start temperatureTstop
end temperatureTdamp
temperature damping parameterrun
number of molecular dynamics steps to be executed during one temperature stepthermo
refresh rate for the thermo dynamic properties, this should typically be the same as the number of molecular
dynamics steps.timestep
time step - typically 1fs defined as 0.001
.seed
random seed for the molecular dynamicsdist
initial velocity distributionlmp
Lammps library instance as pylammpsmpi.LammpsASELibrary
objectoutput
the output quantities which are extracted from the molecular dynamics simulationIsothermal-isobaric ensemble (npt) - pressure and temperature constraints molecular dynamics:
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_npt_with_lammpslib,
get_potential_by_name,
)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = calc_molecular_dynamics_npt_with_lammpslib(
structure=bulk("Al", cubic=True).repeat([10, 10, 10]),
potential_dataframe=potential_dataframe,
Tstart=100,
Tstop=100,
Tdamp=0.1,
run=100,
thermo=100,
timestep=0.001,
Pstart=0.0,
Pstop=0.0,
Pdamp=1.0,
seed=4928459,
dist="gaussian",
output_keys=(
"positions",
"cell",
"forces",
"temperature",
"energy_pot",
"energy_tot",
"pressure",
),
)
The input parameters for the isothermal-isobaric ensemble (npt) are the same as for the canonical ensemble (nvt) plus:
Pstart
start pressurePstop
end pressurePdamp
pressure damping parameterIsenthalpic ensemble (nph) - pressure and helmholtz-energy constraints molecular dynamics:
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_nph_with_lammpslib,
get_potential_by_name,
)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = calc_molecular_dynamics_nph_with_lammpslib(
structure=bulk("Al", cubic=True).repeat([10, 10, 10]),
potential_dataframe=potential_dataframe,
run=100,
thermo=100,
timestep=0.001,
Tstart=100,
Pstart=0.0,
Pstop=0.0,
Pdamp=1.0,
seed=4928459,
dist="gaussian",
output_keys=(
"positions",
"cell",
"forces",
"temperature",
"energy_pot",
"energy_tot",
"pressure",
),
)
One example of a molecular dynamics calculation with the LAMMPS simulation code is the calculation of the thermal expansion:
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_thermal_expansion_with_lammpslib,
evaluate_with_lammpslib,
get_potential_by_name,
)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
temperatures_md, volumes_md = calc_molecular_dynamics_thermal_expansion_with_lammpslib(
structure=bulk("Al", cubic=True).repeat([10, 10, 10]),
potential_dataframe=potential_dataframe,
Tstart=100,
Tstop=1000,
Tstep=100,
Tdamp=0.1,
run=100,
thermo=100,
timestep=0.001,
Pstart=0.0,
Pstop=0.0,
Pdamp=1.0,
seed=4928459,
dist="gaussian",
lmp=None,
)
100%|██████████| 10/10 [00:05<00:00, 1.69it/s]
In addition to the typical LAMMPS input parameters like the atomistic structure structure
as ase.atoms.Atoms
object
and the pandas.DataFrame
for the interatomic potential potential_dataframe
are:
Tstart
start temperatureTstop
end temperatureTstep
temperature stepTdamp
temperature damping parameterrun
number of molecular dynamics steps to be executed during one temperature stepthermo
refresh rate for the thermo dynamic properties, this should typically be the same as the number of molecular
dynamics steps.timestep
time step - typically 1fs defined as 0.001
.Pstart
start pressurePstop
end pressurePdamp
pressure damping parameterseed
random seed for the molecular dynamicsdist
initial velocity distributionlmp
Lammps library instance as pylammpsmpi.LammpsASELibrary
objectThese input parameters are based on the LAMMPS fix nvt/npt
, you can read more about the specific implementation on the
LAMMPS website.
The softening of the phonon modes is calculated for Silicon using the Tersoff interatomic potential which is available via the NIST potentials repository. Silicon is chosen based on its diamond crystal lattice which requires less calculation than the face centered cubic (fcc) crystal of Aluminium. The simulation workflow consists of three distinct steps:
The finite temperature phonon spectrum is calculated using the DynaPhoPy
package, which is integrated inside the atomistics
package. As a prerequisite the dependencies, imported and the bulk
silicon diamond structure is created and the Tersoff interatomic potential is loaded:
from ase.build import bulk
from atomistics.calculators import (
calc_molecular_dynamics_phonons_with_lammpslib,
evaluate_with_lammpslib,
)
from atomistics.workflows import optimize_positions_and_volume, PhonopyWorkflow
from dynaphopy import Quasiparticle
import pandas
from phonopy.units import VaspToTHz
import spglib
structure_bulk = bulk("Si", cubic=True)
potential_dataframe = get_potential_by_name(
potential_name="1988--Tersoff-J--Si-c--LAMMPS--ipr1", resource_path="static/lammps"
)
The first step is optimizing the Silicon diamond structure to match the lattice specifications implemented in the Tersoff interatomic potential:
task_dict = optimize_positions_and_volume(structure=structure_bulk)
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
structure_ase = result_dict["structure_with_optimized_positions_and_volume"]
As a second step the 0K phonons are calculated using the PhonopyWorkflow
which is explained in more detail below in
the section on Phonons.
cell = (
structure_ase.cell.array,
structure_ase.get_scaled_positions(),
structure_ase.numbers,
)
primitive_matrix = spglib.standardize_cell(cell=cell, to_primitive=True)[
0
] / structure_ase.get_volume() ** (1 / 3)
workflow = PhonopyWorkflow(
structure=structure_ase,
interaction_range=10,
factor=VaspToTHz,
displacement=0.01,
dos_mesh=20,
primitive_matrix=primitive_matrix,
number_of_snapshots=None,
)
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
workflow.analyse_structures(output_dict=result_dict)
{'mesh_dict': {'qpoints': array([[0.025, 0.025, 0.025], [0.075, 0.025, 0.025], [0.125, 0.025, 0.025], ..., [0.525, 0.525, 0.425], [0.475, 0.475, 0.475], [0.525, 0.475, 0.475]]), 'weights': array([ 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 12, 6, 12, 12, 12, 12, 6, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 6, 12, 12, 12, 6, 12, 6, 2, 6, 6, 6, 6, 12, 12, 6, 2, 6]), 'frequencies': array([[ 0.35167322, 0.35167322, 0.71941397, 16.05999349, 16.06435417, 16.06435417], [ 0.7810313 , 1.04550359, 1.76442286, 16.01908158, 16.04238401, 16.0474694 ], [ 1.43010566, 1.69629248, 3.13109956, 15.91248433, 15.99513531, 16.00361669], ..., [ 4.89126604, 5.30105813, 11.18409265, 13.02666668, 15.38025565, 15.46187631], [ 4.65215064, 4.65215064, 11.21184039, 13.22967807, 15.43087981, 15.43087981], [ 4.71432047, 4.84620075, 11.26998698, 13.12729988, 15.41640899, 15.43613968]]), 'eigenvectors': None, 'group_velocities': None}, 'band_structure_dict': {'qpoints': [array([[0. , 0. , 0. ], [0.00531915, 0. , 0.00531915], [0.0106383 , 0. , 0.0106383 ], [0.01595745, 0. , 0.01595745], [0.0212766 , 0. , 0.0212766 ], [0.02659574, 0. , 0.02659574], [0.03191489, 0. , 0.03191489], [0.03723404, 0. , 0.03723404], [0.04255319, 0. , 0.04255319], [0.04787234, 0. , 0.04787234], [0.05319149, 0. , 0.05319149], [0.05851064, 0. , 0.05851064], [0.06382979, 0. , 0.06382979], [0.06914894, 0. , 0.06914894], [0.07446809, 0. , 0.07446809], [0.07978723, 0. , 0.07978723], [0.08510638, 0. , 0.08510638], [0.09042553, 0. , 0.09042553], [0.09574468, 0. , 0.09574468], [0.10106383, 0. , 0.10106383], [0.10638298, 0. , 0.10638298], [0.11170213, 0. , 0.11170213], [0.11702128, 0. , 0.11702128], [0.12234043, 0. , 0.12234043], [0.12765957, 0. , 0.12765957], [0.13297872, 0. , 0.13297872], [0.13829787, 0. , 0.13829787], [0.14361702, 0. , 0.14361702], [0.14893617, 0. , 0.14893617], [0.15425532, 0. , 0.15425532], [0.15957447, 0. , 0.15957447], [0.16489362, 0. , 0.16489362], [0.17021277, 0. , 0.17021277], [0.17553191, 0. , 0.17553191], [0.18085106, 0. , 0.18085106], [0.18617021, 0. , 0.18617021], [0.19148936, 0. , 0.19148936], [0.19680851, 0. , 0.19680851], [0.20212766, 0. , 0.20212766], [0.20744681, 0. , 0.20744681], [0.21276596, 0. , 0.21276596], [0.21808511, 0. , 0.21808511], [0.22340426, 0. , 0.22340426], [0.2287234 , 0. , 0.2287234 ], [0.23404255, 0. , 0.23404255], [0.2393617 , 0. , 0.2393617 ], [0.24468085, 0. , 0.24468085], [0.25 , 0. , 0.25 ], [0.25531915, 0. , 0.25531915], [0.2606383 , 0. , 0.2606383 ], [0.26595745, 0. , 0.26595745], [0.2712766 , 0. , 0.2712766 ], [0.27659574, 0. , 0.27659574], [0.28191489, 0. , 0.28191489], [0.28723404, 0. , 0.28723404], [0.29255319, 0. , 0.29255319], [0.29787234, 0. , 0.29787234], [0.30319149, 0. , 0.30319149], [0.30851064, 0. , 0.30851064], [0.31382979, 0. , 0.31382979], [0.31914894, 0. , 0.31914894], [0.32446809, 0. , 0.32446809], [0.32978723, 0. , 0.32978723], [0.33510638, 0. , 0.33510638], [0.34042553, 0. , 0.34042553], [0.34574468, 0. , 0.34574468], [0.35106383, 0. , 0.35106383], [0.35638298, 0. , 0.35638298], [0.36170213, 0. , 0.36170213], [0.36702128, 0. , 0.36702128], [0.37234043, 0. , 0.37234043], [0.37765957, 0. , 0.37765957], [0.38297872, 0. , 0.38297872], [0.38829787, 0. , 0.38829787], [0.39361702, 0. , 0.39361702], [0.39893617, 0. , 0.39893617], [0.40425532, 0. , 0.40425532], [0.40957447, 0. , 0.40957447], [0.41489362, 0. , 0.41489362], [0.42021277, 0. , 0.42021277], [0.42553191, 0. , 0.42553191], [0.43085106, 0. , 0.43085106], [0.43617021, 0. , 0.43617021], [0.44148936, 0. , 0.44148936], [0.44680851, 0. , 0.44680851], [0.45212766, 0. , 0.45212766], [0.45744681, 0. , 0.45744681], [0.46276596, 0. , 0.46276596], [0.46808511, 0. , 0.46808511], [0.47340426, 0. , 0.47340426], [0.4787234 , 0. , 0.4787234 ], [0.48404255, 0. , 0.48404255], [0.4893617 , 0. , 0.4893617 ], [0.49468085, 0. , 0.49468085], [0.5 , 0. , 0.5 ]]), array([[0.5 , 0. , 0.5 ], [0.50378788, 0.00757576, 0.50378788], [0.50757576, 0.01515152, 0.50757576], [0.51136364, 0.02272727, 0.51136364], [0.51515152, 0.03030303, 0.51515152], [0.51893939, 0.03787879, 0.51893939], [0.52272727, 0.04545455, 0.52272727], [0.52651515, 0.0530303 , 0.52651515], [0.53030303, 0.06060606, 0.53030303], [0.53409091, 0.06818182, 0.53409091], [0.53787879, 0.07575758, 0.53787879], [0.54166667, 0.08333333, 0.54166667], [0.54545455, 0.09090909, 0.54545455], [0.54924242, 0.09848485, 0.54924242], [0.5530303 , 0.10606061, 0.5530303 ], [0.55681818, 0.11363636, 0.55681818], [0.56060606, 0.12121212, 0.56060606], [0.56439394, 0.12878788, 0.56439394], [0.56818182, 0.13636364, 0.56818182], [0.5719697 , 0.14393939, 0.5719697 ], [0.57575758, 0.15151515, 0.57575758], [0.57954545, 0.15909091, 0.57954545], [0.58333333, 0.16666667, 0.58333333], [0.58712121, 0.17424242, 0.58712121], [0.59090909, 0.18181818, 0.59090909], [0.59469697, 0.18939394, 0.59469697], [0.59848485, 0.1969697 , 0.59848485], [0.60227273, 0.20454545, 0.60227273], [0.60606061, 0.21212121, 0.60606061], [0.60984848, 0.21969697, 0.60984848], [0.61363636, 0.22727273, 0.61363636], [0.61742424, 0.23484848, 0.61742424], [0.62121212, 0.24242424, 0.62121212], [0.625 , 0.25 , 0.625 ]]), array([[0.375 , 0.375 , 0.75 ], [0.37125, 0.37125, 0.7425 ], [0.3675 , 0.3675 , 0.735 ], [0.36375, 0.36375, 0.7275 ], [0.36 , 0.36 , 0.72 ], [0.35625, 0.35625, 0.7125 ], [0.3525 , 0.3525 , 0.705 ], [0.34875, 0.34875, 0.6975 ], [0.345 , 0.345 , 0.69 ], [0.34125, 0.34125, 0.6825 ], [0.3375 , 0.3375 , 0.675 ], [0.33375, 0.33375, 0.6675 ], [0.33 , 0.33 , 0.66 ], [0.32625, 0.32625, 0.6525 ], [0.3225 , 0.3225 , 0.645 ], [0.31875, 0.31875, 0.6375 ], [0.315 , 0.315 , 0.63 ], [0.31125, 0.31125, 0.6225 ], [0.3075 , 0.3075 , 0.615 ], [0.30375, 0.30375, 0.6075 ], [0.3 , 0.3 , 0.6 ], [0.29625, 0.29625, 0.5925 ], [0.2925 , 0.2925 , 0.585 ], [0.28875, 0.28875, 0.5775 ], [0.285 , 0.285 , 0.57 ], [0.28125, 0.28125, 0.5625 ], [0.2775 , 0.2775 , 0.555 ], [0.27375, 0.27375, 0.5475 ], [0.27 , 0.27 , 0.54 ], [0.26625, 0.26625, 0.5325 ], [0.2625 , 0.2625 , 0.525 ], [0.25875, 0.25875, 0.5175 ], [0.255 , 0.255 , 0.51 ], [0.25125, 0.25125, 0.5025 ], [0.2475 , 0.2475 , 0.495 ], [0.24375, 0.24375, 0.4875 ], [0.24 , 0.24 , 0.48 ], [0.23625, 0.23625, 0.4725 ], [0.2325 , 0.2325 , 0.465 ], [0.22875, 0.22875, 0.4575 ], [0.225 , 0.225 , 0.45 ], [0.22125, 0.22125, 0.4425 ], [0.2175 , 0.2175 , 0.435 ], [0.21375, 0.21375, 0.4275 ], [0.21 , 0.21 , 0.42 ], [0.20625, 0.20625, 0.4125 ], [0.2025 , 0.2025 , 0.405 ], [0.19875, 0.19875, 0.3975 ], [0.195 , 0.195 , 0.39 ], [0.19125, 0.19125, 0.3825 ], [0.1875 , 0.1875 , 0.375 ], [0.18375, 0.18375, 0.3675 ], [0.18 , 0.18 , 0.36 ], [0.17625, 0.17625, 0.3525 ], [0.1725 , 0.1725 , 0.345 ], [0.16875, 0.16875, 0.3375 ], [0.165 , 0.165 , 0.33 ], [0.16125, 0.16125, 0.3225 ], [0.1575 , 0.1575 , 0.315 ], [0.15375, 0.15375, 0.3075 ], [0.15 , 0.15 , 0.3 ], [0.14625, 0.14625, 0.2925 ], [0.1425 , 0.1425 , 0.285 ], [0.13875, 0.13875, 0.2775 ], [0.135 , 0.135 , 0.27 ], [0.13125, 0.13125, 0.2625 ], [0.1275 , 0.1275 , 0.255 ], [0.12375, 0.12375, 0.2475 ], [0.12 , 0.12 , 0.24 ], [0.11625, 0.11625, 0.2325 ], [0.1125 , 0.1125 , 0.225 ], [0.10875, 0.10875, 0.2175 ], [0.105 , 0.105 , 0.21 ], [0.10125, 0.10125, 0.2025 ], [0.0975 , 0.0975 , 0.195 ], [0.09375, 0.09375, 0.1875 ], [0.09 , 0.09 , 0.18 ], [0.08625, 0.08625, 0.1725 ], [0.0825 , 0.0825 , 0.165 ], [0.07875, 0.07875, 0.1575 ], [0.075 , 0.075 , 0.15 ], [0.07125, 0.07125, 0.1425 ], [0.0675 , 0.0675 , 0.135 ], [0.06375, 0.06375, 0.1275 ], [0.06 , 0.06 , 0.12 ], [0.05625, 0.05625, 0.1125 ], [0.0525 , 0.0525 , 0.105 ], [0.04875, 0.04875, 0.0975 ], [0.045 , 0.045 , 0.09 ], [0.04125, 0.04125, 0.0825 ], [0.0375 , 0.0375 , 0.075 ], [0.03375, 0.03375, 0.0675 ], [0.03 , 0.03 , 0.06 ], [0.02625, 0.02625, 0.0525 ], [0.0225 , 0.0225 , 0.045 ], [0.01875, 0.01875, 0.0375 ], [0.015 , 0.015 , 0.03 ], [0.01125, 0.01125, 0.0225 ], [0.0075 , 0.0075 , 0.015 ], [0.00375, 0.00375, 0.0075 ], [0. , 0. , 0. ]]), array([[0. , 0. , 0. ], [0.00617284, 0.00617284, 0.00617284], [0.01234568, 0.01234568, 0.01234568], [0.01851852, 0.01851852, 0.01851852], [0.02469136, 0.02469136, 0.02469136], [0.0308642 , 0.0308642 , 0.0308642 ], [0.03703704, 0.03703704, 0.03703704], [0.04320988, 0.04320988, 0.04320988], [0.04938272, 0.04938272, 0.04938272], [0.05555556, 0.05555556, 0.05555556], [0.0617284 , 0.0617284 , 0.0617284 ], [0.06790123, 0.06790123, 0.06790123], [0.07407407, 0.07407407, 0.07407407], [0.08024691, 0.08024691, 0.08024691], [0.08641975, 0.08641975, 0.08641975], [0.09259259, 0.09259259, 0.09259259], [0.09876543, 0.09876543, 0.09876543], [0.10493827, 0.10493827, 0.10493827], [0.11111111, 0.11111111, 0.11111111], [0.11728395, 0.11728395, 0.11728395], [0.12345679, 0.12345679, 0.12345679], [0.12962963, 0.12962963, 0.12962963], [0.13580247, 0.13580247, 0.13580247], [0.14197531, 0.14197531, 0.14197531], [0.14814815, 0.14814815, 0.14814815], [0.15432099, 0.15432099, 0.15432099], [0.16049383, 0.16049383, 0.16049383], [0.16666667, 0.16666667, 0.16666667], [0.17283951, 0.17283951, 0.17283951], [0.17901235, 0.17901235, 0.17901235], [0.18518519, 0.18518519, 0.18518519], [0.19135802, 0.19135802, 0.19135802], [0.19753086, 0.19753086, 0.19753086], [0.2037037 , 0.2037037 , 0.2037037 ], [0.20987654, 0.20987654, 0.20987654], [0.21604938, 0.21604938, 0.21604938], [0.22222222, 0.22222222, 0.22222222], [0.22839506, 0.22839506, 0.22839506], [0.2345679 , 0.2345679 , 0.2345679 ], [0.24074074, 0.24074074, 0.24074074], [0.24691358, 0.24691358, 0.24691358], [0.25308642, 0.25308642, 0.25308642], [0.25925926, 0.25925926, 0.25925926], [0.2654321 , 0.2654321 , 0.2654321 ], [0.27160494, 0.27160494, 0.27160494], [0.27777778, 0.27777778, 0.27777778], [0.28395062, 0.28395062, 0.28395062], [0.29012346, 0.29012346, 0.29012346], [0.2962963 , 0.2962963 , 0.2962963 ], [0.30246914, 0.30246914, 0.30246914], [0.30864198, 0.30864198, 0.30864198], [0.31481481, 0.31481481, 0.31481481], [0.32098765, 0.32098765, 0.32098765], [0.32716049, 0.32716049, 0.32716049], [0.33333333, 0.33333333, 0.33333333], [0.33950617, 0.33950617, 0.33950617], [0.34567901, 0.34567901, 0.34567901], [0.35185185, 0.35185185, 0.35185185], [0.35802469, 0.35802469, 0.35802469], [0.36419753, 0.36419753, 0.36419753], [0.37037037, 0.37037037, 0.37037037], [0.37654321, 0.37654321, 0.37654321], [0.38271605, 0.38271605, 0.38271605], [0.38888889, 0.38888889, 0.38888889], [0.39506173, 0.39506173, 0.39506173], [0.40123457, 0.40123457, 0.40123457], [0.40740741, 0.40740741, 0.40740741], [0.41358025, 0.41358025, 0.41358025], [0.41975309, 0.41975309, 0.41975309], [0.42592593, 0.42592593, 0.42592593], [0.43209877, 0.43209877, 0.43209877], [0.4382716 , 0.4382716 , 0.4382716 ], [0.44444444, 0.44444444, 0.44444444], [0.45061728, 0.45061728, 0.45061728], [0.45679012, 0.45679012, 0.45679012], [0.46296296, 0.46296296, 0.46296296], [0.4691358 , 0.4691358 , 0.4691358 ], [0.47530864, 0.47530864, 0.47530864], [0.48148148, 0.48148148, 0.48148148], [0.48765432, 0.48765432, 0.48765432], [0.49382716, 0.49382716, 0.49382716], [0.5 , 0.5 , 0.5 ]]), array([[0.5 , 0.5 , 0.5 ], [0.5 , 0.49621212, 0.50378788], [0.5 , 0.49242424, 0.50757576], [0.5 , 0.48863636, 0.51136364], [0.5 , 0.48484848, 0.51515152], [0.5 , 0.48106061, 0.51893939], [0.5 , 0.47727273, 0.52272727], [0.5 , 0.47348485, 0.52651515], [0.5 , 0.46969697, 0.53030303], [0.5 , 0.46590909, 0.53409091], [0.5 , 0.46212121, 0.53787879], [0.5 , 0.45833333, 0.54166667], [0.5 , 0.45454545, 0.54545455], [0.5 , 0.45075758, 0.54924242], [0.5 , 0.4469697 , 0.5530303 ], [0.5 , 0.44318182, 0.55681818], [0.5 , 0.43939394, 0.56060606], [0.5 , 0.43560606, 0.56439394], [0.5 , 0.43181818, 0.56818182], [0.5 , 0.4280303 , 0.5719697 ], [0.5 , 0.42424242, 0.57575758], [0.5 , 0.42045455, 0.57954545], [0.5 , 0.41666667, 0.58333333], [0.5 , 0.41287879, 0.58712121], [0.5 , 0.40909091, 0.59090909], [0.5 , 0.40530303, 0.59469697], [0.5 , 0.40151515, 0.59848485], [0.5 , 0.39772727, 0.60227273], [0.5 , 0.39393939, 0.60606061], [0.5 , 0.39015152, 0.60984848], [0.5 , 0.38636364, 0.61363636], [0.5 , 0.38257576, 0.61742424], [0.5 , 0.37878788, 0.62121212], [0.5 , 0.375 , 0.625 ], [0.5 , 0.37121212, 0.62878788], [0.5 , 0.36742424, 0.63257576], [0.5 , 0.36363636, 0.63636364], [0.5 , 0.35984848, 0.64015152], [0.5 , 0.35606061, 0.64393939], [0.5 , 0.35227273, 0.64772727], [0.5 , 0.34848485, 0.65151515], [0.5 , 0.34469697, 0.65530303], [0.5 , 0.34090909, 0.65909091], [0.5 , 0.33712121, 0.66287879], [0.5 , 0.33333333, 0.66666667], [0.5 , 0.32954545, 0.67045455], [0.5 , 0.32575758, 0.67424242], [0.5 , 0.3219697 , 0.6780303 ], [0.5 , 0.31818182, 0.68181818], [0.5 , 0.31439394, 0.68560606], [0.5 , 0.31060606, 0.68939394], [0.5 , 0.30681818, 0.69318182], [0.5 , 0.3030303 , 0.6969697 ], [0.5 , 0.29924242, 0.70075758], [0.5 , 0.29545455, 0.70454545], [0.5 , 0.29166667, 0.70833333], [0.5 , 0.28787879, 0.71212121], [0.5 , 0.28409091, 0.71590909], [0.5 , 0.28030303, 0.71969697], [0.5 , 0.27651515, 0.72348485], [0.5 , 0.27272727, 0.72727273], [0.5 , 0.26893939, 0.73106061], [0.5 , 0.26515152, 0.73484848], [0.5 , 0.26136364, 0.73863636], [0.5 , 0.25757576, 0.74242424], [0.5 , 0.25378788, 0.74621212], [0.5 , 0.25 , 0.75 ]]), array([[0.5 , 0.25 , 0.75 ], [0.5 , 0.24468085, 0.74468085], [0.5 , 0.2393617 , 0.7393617 ], [0.5 , 0.23404255, 0.73404255], [0.5 , 0.2287234 , 0.7287234 ], [0.5 , 0.22340426, 0.72340426], [0.5 , 0.21808511, 0.71808511], [0.5 , 0.21276596, 0.71276596], [0.5 , 0.20744681, 0.70744681], [0.5 , 0.20212766, 0.70212766], [0.5 , 0.19680851, 0.69680851], [0.5 , 0.19148936, 0.69148936], [0.5 , 0.18617021, 0.68617021], [0.5 , 0.18085106, 0.68085106], [0.5 , 0.17553191, 0.67553191], [0.5 , 0.17021277, 0.67021277], [0.5 , 0.16489362, 0.66489362], [0.5 , 0.15957447, 0.65957447], [0.5 , 0.15425532, 0.65425532], [0.5 , 0.14893617, 0.64893617], [0.5 , 0.14361702, 0.64361702], [0.5 , 0.13829787, 0.63829787], [0.5 , 0.13297872, 0.63297872], [0.5 , 0.12765957, 0.62765957], [0.5 , 0.12234043, 0.62234043], [0.5 , 0.11702128, 0.61702128], [0.5 , 0.11170213, 0.61170213], [0.5 , 0.10638298, 0.60638298], [0.5 , 0.10106383, 0.60106383], [0.5 , 0.09574468, 0.59574468], [0.5 , 0.09042553, 0.59042553], [0.5 , 0.08510638, 0.58510638], [0.5 , 0.07978723, 0.57978723], [0.5 , 0.07446809, 0.57446809], [0.5 , 0.06914894, 0.56914894], [0.5 , 0.06382979, 0.56382979], [0.5 , 0.05851064, 0.55851064], [0.5 , 0.05319149, 0.55319149], [0.5 , 0.04787234, 0.54787234], [0.5 , 0.04255319, 0.54255319], [0.5 , 0.03723404, 0.53723404], [0.5 , 0.03191489, 0.53191489], [0.5 , 0.02659574, 0.52659574], [0.5 , 0.0212766 , 0.5212766 ], [0.5 , 0.01595745, 0.51595745], [0.5 , 0.0106383 , 0.5106383 ], [0.5 , 0.00531915, 0.50531915], [0.5 , 0. , 0.5 ]])], 'distances': [array([0. , 0.00195846, 0.00391691, 0.00587537, 0.00783383, 0.00979229, 0.01175074, 0.0137092 , 0.01566766, 0.01762611, 0.01958457, 0.02154303, 0.02350149, 0.02545994, 0.0274184 , 0.02937686, 0.03133531, 0.03329377, 0.03525223, 0.03721068, 0.03916914, 0.0411276 , 0.04308606, 0.04504451, 0.04700297, 0.04896143, 0.05091988, 0.05287834, 0.0548368 , 0.05679526, 0.05875371, 0.06071217, 0.06267063, 0.06462908, 0.06658754, 0.068546 , 0.07050446, 0.07246291, 0.07442137, 0.07637983, 0.07833828, 0.08029674, 0.0822552 , 0.08421366, 0.08617211, 0.08813057, 0.09008903, 0.09204748, 0.09400594, 0.0959644 , 0.09792285, 0.09988131, 0.10183977, 0.10379823, 0.10575668, 0.10771514, 0.1096736 , 0.11163205, 0.11359051, 0.11554897, 0.11750743, 0.11946588, 0.12142434, 0.1233828 , 0.12534125, 0.12729971, 0.12925817, 0.13121663, 0.13317508, 0.13513354, 0.137092 , 0.13905045, 0.14100891, 0.14296737, 0.14492583, 0.14688428, 0.14884274, 0.1508012 , 0.15275965, 0.15471811, 0.15667657, 0.15863503, 0.16059348, 0.16255194, 0.1645104 , 0.16646885, 0.16842731, 0.17038577, 0.17234422, 0.17430268, 0.17626114, 0.1782196 , 0.18017805, 0.18213651, 0.18409497]), array([0.18409497, 0.18606731, 0.18803966, 0.190012 , 0.19198435, 0.19395669, 0.19592904, 0.19790139, 0.19987373, 0.20184608, 0.20381842, 0.20579077, 0.20776311, 0.20973546, 0.2117078 , 0.21368015, 0.21565249, 0.21762484, 0.21959719, 0.22156953, 0.22354188, 0.22551422, 0.22748657, 0.22945891, 0.23143126, 0.2334036 , 0.23537595, 0.23734829, 0.23932064, 0.24129299, 0.24326533, 0.24523768, 0.24721002, 0.24918237]), array([0.24918237, 0.25113499, 0.25308761, 0.25504023, 0.25699286, 0.25894548, 0.2608981 , 0.26285072, 0.26480334, 0.26675597, 0.26870859, 0.27066121, 0.27261383, 0.27456645, 0.27651908, 0.2784717 , 0.28042432, 0.28237694, 0.28432956, 0.28628219, 0.28823481, 0.29018743, 0.29214005, 0.29409267, 0.2960453 , 0.29799792, 0.29995054, 0.30190316, 0.30385578, 0.30580841, 0.30776103, 0.30971365, 0.31166627, 0.31361889, 0.31557152, 0.31752414, 0.31947676, 0.32142938, 0.323382 , 0.32533463, 0.32728725, 0.32923987, 0.33119249, 0.33314511, 0.33509774, 0.33705036, 0.33900298, 0.3409556 , 0.34290822, 0.34486085, 0.34681347, 0.34876609, 0.35071871, 0.35267133, 0.35462396, 0.35657658, 0.3585292 , 0.36048182, 0.36243444, 0.36438707, 0.36633969, 0.36829231, 0.37024493, 0.37219755, 0.37415018, 0.3761028 , 0.37805542, 0.38000804, 0.38196066, 0.38391329, 0.38586591, 0.38781853, 0.38977115, 0.39172377, 0.3936764 , 0.39562902, 0.39758164, 0.39953426, 0.40148688, 0.40343951, 0.40539213, 0.40734475, 0.40929737, 0.41124999, 0.41320262, 0.41515524, 0.41710786, 0.41906048, 0.4210131 , 0.42296573, 0.42491835, 0.42687097, 0.42882359, 0.43077621, 0.43272884, 0.43468146, 0.43663408, 0.4385867 , 0.44053932, 0.44249194, 0.44444457]), array([0.44444457, 0.44641285, 0.44838113, 0.45034942, 0.4523177 , 0.45428598, 0.45625426, 0.45822255, 0.46019083, 0.46215911, 0.4641274 , 0.46609568, 0.46806396, 0.47003225, 0.47200053, 0.47396881, 0.47593709, 0.47790538, 0.47987366, 0.48184194, 0.48381023, 0.48577851, 0.48774679, 0.48971507, 0.49168336, 0.49365164, 0.49561992, 0.49758821, 0.49955649, 0.50152477, 0.50349306, 0.50546134, 0.50742962, 0.5093979 , 0.51136619, 0.51333447, 0.51530275, 0.51727104, 0.51923932, 0.5212076 , 0.52317588, 0.52514417, 0.52711245, 0.52908073, 0.53104902, 0.5330173 , 0.53498558, 0.53695387, 0.53892215, 0.54089043, 0.54285871, 0.544827 , 0.54679528, 0.54876356, 0.55073185, 0.55270013, 0.55466841, 0.55663669, 0.55860498, 0.56057326, 0.56254154, 0.56450983, 0.56647811, 0.56844639, 0.57041468, 0.57238296, 0.57435124, 0.57631952, 0.57828781, 0.58025609, 0.58222437, 0.58419266, 0.58616094, 0.58812922, 0.5900975 , 0.59206579, 0.59403407, 0.59600235, 0.59797064, 0.59993892, 0.6019072 , 0.60387549]), array([0.60387549, 0.60584783, 0.60782018, 0.60979252, 0.61176487, 0.61373721, 0.61570956, 0.6176819 , 0.61965425, 0.62162659, 0.62359894, 0.62557129, 0.62754363, 0.62951598, 0.63148832, 0.63346067, 0.63543301, 0.63740536, 0.6393777 , 0.64135005, 0.64332239, 0.64529474, 0.64726709, 0.64923943, 0.65121178, 0.65318412, 0.65515647, 0.65712881, 0.65910116, 0.6610735 , 0.66304585, 0.66501819, 0.66699054, 0.66896289, 0.67093523, 0.67290758, 0.67487992, 0.67685227, 0.67882461, 0.68079696, 0.6827693 , 0.68474165, 0.68671399, 0.68868634, 0.69065869, 0.69263103, 0.69460338, 0.69657572, 0.69854807, 0.70052041, 0.70249276, 0.7044651 , 0.70643745, 0.70840979, 0.71038214, 0.71235449, 0.71432683, 0.71629918, 0.71827152, 0.72024387, 0.72221621, 0.72418856, 0.7261609 , 0.72813325, 0.73010559, 0.73207794, 0.73405029]), array([0.73405029, 0.73600874, 0.7379672 , 0.73992566, 0.74188411, 0.74384257, 0.74580103, 0.74775948, 0.74971794, 0.7516764 , 0.75363486, 0.75559331, 0.75755177, 0.75951023, 0.76146868, 0.76342714, 0.7653856 , 0.76734406, 0.76930251, 0.77126097, 0.77321943, 0.77517788, 0.77713634, 0.7790948 , 0.78105326, 0.78301171, 0.78497017, 0.78692863, 0.78888708, 0.79084554, 0.792804 , 0.79476246, 0.79672091, 0.79867937, 0.80063783, 0.80259628, 0.80455474, 0.8065132 , 0.80847166, 0.81043011, 0.81238857, 0.81434703, 0.81630548, 0.81826394, 0.8202224 , 0.82218085, 0.82413931, 0.82609777])], 'frequencies': [array([[2.18701057e-06, 2.19691522e-06, 2.20369934e-06, 1.60678991e+01, 1.60678991e+01, 1.60678991e+01], [1.06625590e-01, 1.06625590e-01, 1.53239098e-01, 1.60675081e+01, 1.60676418e+01, 1.60676418e+01], [2.13231909e-01, 2.13231909e-01, 3.06460038e-01, 1.60663351e+01, 1.60668701e+01, 1.60668701e+01], [3.19799678e-01, 3.19799678e-01, 4.59644667e-01, 1.60643797e+01, 1.60655844e+01, 1.60655844e+01], [4.26309607e-01, 4.26309607e-01, 6.12774843e-01, 1.60616416e+01, 1.60637853e+01, 1.60637853e+01], [5.32742383e-01, 5.32742383e-01, 7.65832440e-01, 1.60581201e+01, 1.60614737e+01, 1.60614737e+01], [6.39078667e-01, 6.39078667e-01, 9.18799354e-01, 1.60538144e+01, 1.60586506e+01, 1.60586506e+01], [7.45299086e-01, 7.45299086e-01, 1.07165751e+00, 1.60487235e+01, 1.60553175e+01, 1.60553175e+01], [8.51384225e-01, 8.51384225e-01, 1.22438885e+00, 1.60428463e+01, 1.60514759e+01, 1.60514759e+01], [9.57314622e-01, 9.57314622e-01, 1.37697538e+00, 1.60361814e+01, 1.60471277e+01, 1.60471277e+01], [1.06307076e+00, 1.06307076e+00, 1.52939913e+00, 1.60287272e+01, 1.60422751e+01, 1.60422751e+01], [1.16863306e+00, 1.16863306e+00, 1.68164218e+00, 1.60204822e+01, 1.60369205e+01, 1.60369205e+01], [1.27398186e+00, 1.27398186e+00, 1.83368666e+00, 1.60114444e+01, 1.60310665e+01, 1.60310665e+01], [1.37909745e+00, 1.37909745e+00, 1.98551477e+00, 1.60016119e+01, 1.60247161e+01, 1.60247161e+01], [1.48396001e+00, 1.48396001e+00, 2.13710877e+00, 1.59909824e+01, 1.60178724e+01, 1.60178724e+01], [1.58854964e+00, 1.58854964e+00, 2.28845098e+00, 1.59795536e+01, 1.60105390e+01, 1.60105390e+01], [1.69284632e+00, 1.69284632e+00, 2.43952381e+00, 1.59673229e+01, 1.60027197e+01, 1.60027197e+01], [1.79682995e+00, 1.79682995e+00, 2.59030972e+00, 1.59542878e+01, 1.59944185e+01, 1.59944185e+01], [1.90048030e+00, 1.90048030e+00, 2.74079128e+00, 1.59404453e+01, 1.59856398e+01, 1.59856398e+01], [2.00377700e+00, 2.00377700e+00, 2.89095116e+00, 1.59257926e+01, 1.59763882e+01, 1.59763882e+01], [2.10669956e+00, 2.10669956e+00, 3.04077208e+00, 1.59103264e+01, 1.59666687e+01, 1.59666687e+01], [2.20922736e+00, 2.20922736e+00, 3.19023691e+00, 1.58940435e+01, 1.59564867e+01, 1.59564867e+01], [2.31133960e+00, 2.31133960e+00, 3.33932858e+00, 1.58769405e+01, 1.59458477e+01, 1.59458477e+01], [2.41301534e+00, 2.41301534e+00, 3.48803016e+00, 1.58590139e+01, 1.59347578e+01, 1.59347578e+01], [2.51423346e+00, 2.51423346e+00, 3.63632482e+00, 1.58402599e+01, 1.59232232e+01, 1.59232232e+01], [2.61497266e+00, 2.61497266e+00, 3.78419585e+00, 1.58206748e+01, 1.59112506e+01, 1.59112506e+01], [2.71521144e+00, 2.71521144e+00, 3.93162667e+00, 1.58002545e+01, 1.58988470e+01, 1.58988470e+01], [2.81492813e+00, 2.81492813e+00, 4.07860083e+00, 1.57789952e+01, 1.58860198e+01, 1.58860198e+01], [2.91410081e+00, 2.91410081e+00, 4.22510199e+00, 1.57568925e+01, 1.58727768e+01, 1.58727768e+01], [3.01270737e+00, 3.01270737e+00, 4.37111398e+00, 1.57339422e+01, 1.58591262e+01, 1.58591262e+01], [3.11072544e+00, 3.11072544e+00, 4.51662075e+00, 1.57101400e+01, 1.58450764e+01, 1.58450764e+01], [3.20813243e+00, 3.20813243e+00, 4.66160641e+00, 1.56854812e+01, 1.58306367e+01, 1.58306367e+01], [3.30490548e+00, 3.30490548e+00, 4.80605520e+00, 1.56599614e+01, 1.58158162e+01, 1.58158162e+01], [3.40102147e+00, 3.40102147e+00, 4.94995155e+00, 1.56335759e+01, 1.58006249e+01, 1.58006249e+01], [3.49645700e+00, 3.49645700e+00, 5.09328001e+00, 1.56063199e+01, 1.57850732e+01, 1.57850732e+01], [3.59118839e+00, 3.59118839e+00, 5.23602533e+00, 1.55781885e+01, 1.57691716e+01, 1.57691716e+01], [3.68519163e+00, 3.68519163e+00, 5.37817241e+00, 1.55491768e+01, 1.57529316e+01, 1.57529316e+01], [3.77844244e+00, 3.77844244e+00, 5.51970631e+00, 1.55192800e+01, 1.57363649e+01, 1.57363649e+01], [3.87091618e+00, 3.87091618e+00, 5.66061230e+00, 1.54884928e+01, 1.57194835e+01, 1.57194835e+01], [3.96258789e+00, 3.96258789e+00, 5.80087581e+00, 1.54568102e+01, 1.57023004e+01, 1.57023004e+01], [4.05343226e+00, 4.05343226e+00, 5.94048245e+00, 1.54242271e+01, 1.56848288e+01, 1.56848288e+01], [4.14342363e+00, 4.14342363e+00, 6.07941802e+00, 1.53907382e+01, 1.56670824e+01, 1.56670824e+01], [4.23253595e+00, 4.23253595e+00, 6.21766853e+00, 1.53563383e+01, 1.56490757e+01, 1.56490757e+01], [4.32074280e+00, 4.32074280e+00, 6.35522016e+00, 1.53210221e+01, 1.56308235e+01, 1.56308235e+01], [4.40801738e+00, 4.40801738e+00, 6.49205931e+00, 1.52847843e+01, 1.56123413e+01, 1.56123413e+01], [4.49433246e+00, 4.49433246e+00, 6.62817257e+00, 1.52476196e+01, 1.55936453e+01, 1.55936453e+01], [4.57966044e+00, 4.57966044e+00, 6.76354674e+00, 1.52095227e+01, 1.55747520e+01, 1.55747520e+01], [4.66397327e+00, 4.66397327e+00, 6.89816884e+00, 1.51704881e+01, 1.55556788e+01, 1.55556788e+01], [4.74724248e+00, 4.74724248e+00, 7.03202608e+00, 1.51305106e+01, 1.55364436e+01, 1.55364436e+01], [4.82943918e+00, 4.82943918e+00, 7.16510590e+00, 1.50895847e+01, 1.55170649e+01, 1.55170649e+01], [4.91053403e+00, 4.91053403e+00, 7.29739597e+00, 1.50477052e+01, 1.54975617e+01, 1.54975617e+01], [4.99049726e+00, 4.99049726e+00, 7.42888415e+00, 1.50048667e+01, 1.54779540e+01, 1.54779540e+01], [5.06929865e+00, 5.06929865e+00, 7.55955856e+00, 1.49610639e+01, 1.54582620e+01, 1.54582620e+01], [5.14690753e+00, 5.14690753e+00, 7.68940753e+00, 1.49162915e+01, 1.54385069e+01, 1.54385069e+01], [5.22329282e+00, 5.22329282e+00, 7.81841962e+00, 1.48705443e+01, 1.54187103e+01, 1.54187103e+01], [5.29842297e+00, 5.29842297e+00, 7.94658362e+00, 1.48238171e+01, 1.53988946e+01, 1.53988946e+01], [5.37226600e+00, 5.37226600e+00, 8.07388856e+00, 1.47761047e+01, 1.53790827e+01, 1.53790827e+01], [5.44478953e+00, 5.44478953e+00, 8.20032372e+00, 1.47274020e+01, 1.53592983e+01, 1.53592983e+01], [5.51596076e+00, 5.51596076e+00, 8.32587860e+00, 1.46777039e+01, 1.53395654e+01, 1.53395654e+01], [5.58574651e+00, 5.58574651e+00, 8.45054294e+00, 1.46270056e+01, 1.53199089e+01, 1.53199089e+01], [5.65411319e+00, 5.65411319e+00, 8.57430676e+00, 1.45753020e+01, 1.53003542e+01, 1.53003542e+01], [5.72102691e+00, 5.72102691e+00, 8.69716027e+00, 1.45225884e+01, 1.52809272e+01, 1.52809272e+01], [5.78645342e+00, 5.78645342e+00, 8.81909398e+00, 1.44688599e+01, 1.52616544e+01, 1.52616544e+01], [5.85035821e+00, 5.85035821e+00, 8.94009862e+00, 1.44141121e+01, 1.52425628e+01, 1.52425628e+01], [5.91270648e+00, 5.91270648e+00, 9.06016518e+00, 1.43583401e+01, 1.52236797e+01, 1.52236797e+01], [5.97346325e+00, 5.97346325e+00, 9.17928491e+00, 1.43015397e+01, 1.52050331e+01, 1.52050331e+01], [6.03259336e+00, 6.03259336e+00, 9.29744928e+00, 1.42437065e+01, 1.51866511e+01, 1.51866511e+01], [6.09006155e+00, 6.09006155e+00, 9.41465007e+00, 1.41848361e+01, 1.51685625e+01, 1.51685625e+01], [6.14583250e+00, 6.14583250e+00, 9.53087927e+00, 1.41249246e+01, 1.51507959e+01, 1.51507959e+01], [6.19987090e+00, 6.19987090e+00, 9.64612916e+00, 1.40639678e+01, 1.51333805e+01, 1.51333805e+01], [6.25214152e+00, 6.25214152e+00, 9.76039224e+00, 1.40019619e+01, 1.51163455e+01, 1.51163455e+01], [6.30260929e+00, 6.30260929e+00, 9.87366131e+00, 1.39389032e+01, 1.50997202e+01, 1.50997202e+01], [6.35123937e+00, 6.35123937e+00, 9.98592942e+00, 1.38747880e+01, 1.50835337e+01, 1.50835337e+01], [6.39799726e+00, 6.39799726e+00, 1.00971898e+01, 1.38096130e+01, 1.50678154e+01, 1.50678154e+01], [6.44284885e+00, 6.44284885e+00, 1.02074362e+01, 1.37433748e+01, 1.50525941e+01, 1.50525941e+01], [6.48576059e+00, 6.48576059e+00, 1.03166622e+01, 1.36760703e+01, 1.50378985e+01, 1.50378985e+01], [6.52669951e+00, 6.52669951e+00, 1.04248621e+01, 1.36076964e+01, 1.50237569e+01, 1.50237569e+01], [6.56563338e+00, 6.56563338e+00, 1.05320301e+01, 1.35382504e+01, 1.50101972e+01, 1.50101972e+01], [6.60253081e+00, 6.60253081e+00, 1.06381608e+01, 1.34677297e+01, 1.49972465e+01, 1.49972465e+01], [6.63736135e+00, 6.63736135e+00, 1.07432492e+01, 1.33961316e+01, 1.49849313e+01, 1.49849313e+01], [6.67009563e+00, 6.67009563e+00, 1.08472903e+01, 1.33234540e+01, 1.49732773e+01, 1.49732773e+01], [6.70070547e+00, 6.70070547e+00, 1.09502796e+01, 1.32496947e+01, 1.49623091e+01, 1.49623091e+01], [6.72916397e+00, 6.72916397e+00, 1.10522127e+01, 1.31748518e+01, 1.49520504e+01, 1.49520504e+01], [6.75544567e+00, 6.75544567e+00, 1.11530855e+01, 1.30989236e+01, 1.49425237e+01, 1.49425237e+01], [6.77952663e+00, 6.77952663e+00, 1.12528941e+01, 1.30219085e+01, 1.49337500e+01, 1.49337500e+01], [6.80138457e+00, 6.80138457e+00, 1.13516350e+01, 1.29438053e+01, 1.49257493e+01, 1.49257493e+01], [6.82099896e+00, 6.82099896e+00, 1.14493049e+01, 1.28646126e+01, 1.49185396e+01, 1.49185396e+01], [6.83835113e+00, 6.83835113e+00, 1.15459006e+01, 1.27843298e+01, 1.49121375e+01, 1.49121375e+01], [6.85342435e+00, 6.85342435e+00, 1.16414194e+01, 1.27029559e+01, 1.49065581e+01, 1.49065581e+01], [6.86620396e+00, 6.86620396e+00, 1.17358587e+01, 1.26204906e+01, 1.49018144e+01, 1.49018144e+01], [6.87667737e+00, 6.87667737e+00, 1.18292162e+01, 1.25369336e+01, 1.48979177e+01, 1.48979177e+01], [6.88483424e+00, 6.88483424e+00, 1.19214899e+01, 1.24522848e+01, 1.48948771e+01, 1.48948771e+01], [6.89066641e+00, 6.89066641e+00, 1.20126778e+01, 1.23665443e+01, 1.48927000e+01, 1.48927000e+01], [6.89416806e+00, 6.89416806e+00, 1.21027784e+01, 1.22797127e+01, 1.48913917e+01, 1.48913917e+01], [6.89533567e+00, 6.89533567e+00, 1.21917904e+01, 1.21917904e+01, 1.48909552e+01, 1.48909552e+01]]), array([[ 6.89533567, 6.89533567, 12.19179039, 12.19179039, 14.89095524, 14.89095524], [ 6.89476599, 6.89721307, 12.19035931, 12.19131253, 14.89109076, 14.89177681], [ 6.8930571 , 6.90283616, 12.18607431, 12.18988157, 14.8914973 , 14.89423361], [ 6.89020956, 6.91217764, 12.17895978, 12.18750534, 14.89217481, 14.89830206], [ 6.88622426, 6.92519216, 12.16905574, 12.18419693, 14.89312318, 14.90394357], [ 6.88110243, 6.9418166 , 12.15641674, 12.17997485, 14.89434227, 14.91110552], [ 6.8748457 , 6.96197032, 12.1411106 , 12.17486306, 14.89583189, 14.9197226 ], [ 6.86745601, 6.98555564, 12.1232168 , 12.16889124, 14.89759181, 14.92971834], [ 6.85893568, 7.0124582 , 12.10282475, 12.16209492, 14.89962177, 14.94100685], [ 6.84928737, 7.04254753, 12.08003199, 12.15451577, 14.90192145, 14.9534946 ], [ 6.83851409, 7.07567754, 12.05494232, 12.14620185, 14.90449047, 14.96708225], [ 6.8266192 , 7.11168706, 12.02766403, 12.13720797, 14.90732842, 14.98166641], [ 6.81360641, 7.1504004 , 11.99830825, 12.12759601, 14.91043482, 14.99714124], [ 6.79947975, 7.19162786, 11.96698741, 12.11743535, 14.91380915, 15.01339997], [ 6.78424361, 7.23516623, 11.93381387, 12.10680327, 14.91745083, 15.03033626], [ 6.7679027 , 7.28079926, 11.89889873, 12.0957854 , 14.9213592 , 15.04784527], [ 6.75046209, 7.32829805, 11.86235086, 12.08447621, 14.92553355, 15.06582469], [ 6.73192714, 7.3774215 , 11.82427602, 12.07297947, 14.92997311, 15.0841755 ], [ 6.71230356, 7.42791658, 11.78477623, 12.06140874, 14.93467703, 15.1028026 ], [ 6.69159738, 7.47951874, 11.74394921, 12.0498878 , 14.93964437, 15.12161529], [ 6.66981492, 7.53195215, 11.701888 , 12.03855107, 14.94487413, 15.14052765], [ 6.64696284, 7.58493013, 11.65868065, 12.02754391, 14.95036522, 15.15945873], [ 6.62304809, 7.6381555 , 11.61441001, 12.01702285, 14.95611647, 15.17833279], [ 6.59807794, 7.69132112, 11.5691536 , 12.0071556 , 14.96212661, 15.19707928], [ 6.57205993, 7.74411056, 11.52298356, 11.99812092, 14.96839427, 15.21563293], [ 6.5450019 , 7.79619897, 11.47596658, 11.99010811, 14.974918 , 15.23393372], [ 6.51691198, 7.8472543 , 11.42816396, 11.98331627, 14.98169623, 15.25192677], [ 6.48779857, 7.89693879, 11.3796316 , 11.9779531 , 14.98872728, 15.26956229], [ 6.45767036, 7.94491097, 11.33042012, 11.97423316, 14.99600936, 15.28679543], [ 6.42653627, 7.99082805, 11.28057486, 11.97237575, 15.00354058, 15.30358621], [ 6.39440553, 8.03434895, 11.23013602, 11.97260212, 15.01131889, 15.31989932], [ 6.36128757, 8.07513774, 11.17913872, 11.97513212, 15.01934216, 15.33570402], [ 6.3271921 , 8.11286763, 11.12761311, 11.98018037, 15.02760809, 15.35097401], [ 6.29212906, 8.1472254 , 11.07558447, 11.98795191, 15.03611427, 15.36568722]]), array([[6.29212906e+00, 8.14722540e+00, 1.10755845e+01, 1.19879519e+01, 1.50361143e+01, 1.53656872e+01], [6.25647352e+00, 8.17762824e+00, 1.10236007e+01, 1.19985158e+01, 1.50447695e+01, 1.53796873e+01], [6.21988972e+00, 8.20417287e+00, 1.09711594e+01, 1.20121030e+01, 1.50536551e+01, 1.53931105e+01], [6.18238794e+00, 8.22662180e+00, 1.09182714e+01, 1.20288578e+01, 1.50627683e+01, 1.54059471e+01], [6.14397867e+00, 8.24476801e+00, 1.08649436e+01, 1.20488984e+01, 1.50721062e+01, 1.54181907e+01], [6.10467261e+00, 8.25843843e+00, 1.08111782e+01, 1.20723127e+01, 1.50816657e+01, 1.54298385e+01], [6.06448062e+00, 8.26749638e+00, 1.07569737e+01, 1.20991563e+01, 1.50914436e+01, 1.54408909e+01], [6.02341375e+00, 8.27184310e+00, 1.07023245e+01, 1.21294507e+01, 1.51014366e+01, 1.54513515e+01], [5.98148322e+00, 8.27141809e+00, 1.06472210e+01, 1.21631830e+01, 1.51116412e+01, 1.54612269e+01], [5.93870041e+00, 8.26619826e+00, 1.05916501e+01, 1.22003070e+01, 1.51220536e+01, 1.54705266e+01], [5.89507685e+00, 8.25619607e+00, 1.05355947e+01, 1.22407444e+01, 1.51326701e+01, 1.54792629e+01], [5.85062423e+00, 8.24145671e+00, 1.04790345e+01, 1.22843880e+01, 1.51434866e+01, 1.54874505e+01], [5.80535435e+00, 8.22205454e+00, 1.04219458e+01, 1.23311050e+01, 1.51544990e+01, 1.54951070e+01], [5.75927918e+00, 8.19808909e+00, 1.03643013e+01, 1.23807412e+01, 1.51657030e+01, 1.55022519e+01], [5.71241078e+00, 8.16968082e+00, 1.03060712e+01, 1.24331247e+01, 1.51770940e+01, 1.55089071e+01], [5.66476132e+00, 8.13696682e+00, 1.02472222e+01, 1.24880707e+01, 1.51886673e+01, 1.55150965e+01], [5.61634311e+00, 8.10009673e+00, 1.01877186e+01, 1.25453849e+01, 1.52004182e+01, 1.55208458e+01], [5.56716850e+00, 8.05922898e+00, 1.01275221e+01, 1.26048678e+01, 1.52123416e+01, 1.55261825e+01], [5.51724999e+00, 8.01452741e+00, 1.00665919e+01, 1.26663173e+01, 1.52244322e+01, 1.55311356e+01], [5.46660010e+00, 7.96615838e+00, 1.00048851e+01, 1.27295323e+01, 1.52366848e+01, 1.55357354e+01], [5.41523147e+00, 7.91428833e+00, 9.94235680e+00, 1.27943144e+01, 1.52490938e+01, 1.55400135e+01], [5.36315676e+00, 7.85908189e+00, 9.87896026e+00, 1.28604702e+01, 1.52616534e+01, 1.55440024e+01], [5.31038872e+00, 7.80070024e+00, 9.81464731e+00, 1.29278126e+01, 1.52743579e+01, 1.55477354e+01], [5.25694012e+00, 7.73930008e+00, 9.74936842e+00, 1.29961616e+01, 1.52872010e+01, 1.55512465e+01], [5.20282376e+00, 7.67503275e+00, 9.68307301e+00, 1.30653456e+01, 1.53001767e+01, 1.55545700e+01], [5.14805250e+00, 7.60804370e+00, 9.61570966e+00, 1.31352015e+01, 1.53132784e+01, 1.55577406e+01], [5.09263918e+00, 7.53847222e+00, 9.54722637e+00, 1.32055749e+01, 1.53264997e+01, 1.55607929e+01], [5.03659669e+00, 7.46645125e+00, 9.47757079e+00, 1.32763204e+01, 1.53398339e+01, 1.55637613e+01], [4.97993788e+00, 7.39210746e+00, 9.40669052e+00, 1.33473013e+01, 1.53532739e+01, 1.55666801e+01], [4.92267563e+00, 7.31556132e+00, 9.33453328e+00, 1.34183894e+01, 1.53668129e+01, 1.55695827e+01], [4.86482279e+00, 7.23692730e+00, 9.26104725e+00, 1.34894651e+01, 1.53804435e+01, 1.55725021e+01], [4.80639218e+00, 7.15631413e+00, 9.18618123e+00, 1.35604165e+01, 1.53941585e+01, 1.55754701e+01], [4.74739660e+00, 7.07382508e+00, 9.10988493e+00, 1.36311397e+01, 1.54079504e+01, 1.55785176e+01], [4.68784882e+00, 6.98955824e+00, 9.03210916e+00, 1.37015378e+01, 1.54218114e+01, 1.55816741e+01], [4.62776153e+00, 6.90360685e+00, 8.95280611e+00, 1.37715211e+01, 1.54357340e+01, 1.55849678e+01], [4.56714742e+00, 6.81605958e+00, 8.87192951e+00, 1.38410062e+01, 1.54497101e+01, 1.55884254e+01], [4.50601906e+00, 6.72700084e+00, 8.78943483e+00, 1.39099162e+01, 1.54637317e+01, 1.55920716e+01], [4.44438898e+00, 6.63651108e+00, 8.70527953e+00, 1.39781798e+01, 1.54777906e+01, 1.55959297e+01], [4.38226965e+00, 6.54466702e+00, 8.61942314e+00, 1.40457313e+01, 1.54918787e+01, 1.56000208e+01], [4.31967342e+00, 6.45154194e+00, 8.53182751e+00, 1.41125102e+01, 1.55059874e+01, 1.56043639e+01], [4.25661258e+00, 6.35720591e+00, 8.44245688e+00, 1.41784608e+01, 1.55201084e+01, 1.56089764e+01], [4.19309930e+00, 6.26172600e+00, 8.35127806e+00, 1.42435321e+01, 1.55342331e+01, 1.56138729e+01], [4.12914566e+00, 6.16516649e+00, 8.25826052e+00, 1.43076773e+01, 1.55483527e+01, 1.56190663e+01], [4.06476362e+00, 6.06758902e+00, 8.16337647e+00, 1.43708539e+01, 1.55624585e+01, 1.56245671e+01], [3.99996504e+00, 5.96905281e+00, 8.06660096e+00, 1.44330230e+01, 1.55765418e+01, 1.56303834e+01], [3.93476163e+00, 5.86961477e+00, 7.96791195e+00, 1.44941494e+01, 1.55905936e+01, 1.56365214e+01], [3.86916501e+00, 5.76932964e+00, 7.86729031e+00, 1.45542014e+01, 1.56046049e+01, 1.56429847e+01], [3.80318663e+00, 5.66825013e+00, 7.76471990e+00, 1.46131503e+01, 1.56185667e+01, 1.56497750e+01], [3.73683782e+00, 5.56642700e+00, 7.66018754e+00, 1.46709706e+01, 1.56324701e+01, 1.56568916e+01], [3.67012976e+00, 5.46390917e+00, 7.55368306e+00, 1.47276397e+01, 1.56463058e+01, 1.56643318e+01], [3.60307349e+00, 5.36074380e+00, 7.44519925e+00, 1.47831375e+01, 1.56600648e+01, 1.56720909e+01], [3.53567988e+00, 5.25697637e+00, 7.33473184e+00, 1.48374466e+01, 1.56737379e+01, 1.56801621e+01], [3.46795965e+00, 5.15265073e+00, 7.22227948e+00, 1.48905521e+01, 1.56873160e+01, 1.56885369e+01], [3.39992337e+00, 5.04780917e+00, 7.10784369e+00, 1.49424412e+01, 1.56972047e+01, 1.57007899e+01], [3.33158144e+00, 4.94249245e+00, 6.99142877e+00, 1.49931033e+01, 1.57061535e+01, 1.57141505e+01], [3.26294407e+00, 4.83673984e+00, 6.87304180e+00, 1.50425299e+01, 1.57153696e+01, 1.57273887e+01], [3.19402132e+00, 4.73058919e+00, 6.75269253e+00, 1.50907144e+01, 1.57248376e+01, 1.57404953e+01], [3.12482308e+00, 4.62407689e+00, 6.63039332e+00, 1.51376519e+01, 1.57345411e+01, 1.57534612e+01], [3.05535904e+00, 4.51723796e+00, 6.50615903e+00, 1.51833393e+01, 1.57444621e+01, 1.57662775e+01], [2.98563873e+00, 4.41010602e+00, 6.38000697e+00, 1.52277750e+01, 1.57545816e+01, 1.57789351e+01], [2.91567149e+00, 4.30271333e+00, 6.25195683e+00, 1.52709592e+01, 1.57648794e+01, 1.57914252e+01], [2.84546649e+00, 4.19509079e+00, 6.12203053e+00, 1.53128930e+01, 1.57753347e+01, 1.58037389e+01], [2.77503270e+00, 4.08726795e+00, 5.99025217e+00, 1.53535793e+01, 1.57859255e+01, 1.58158673e+01], [2.70437890e+00, 3.97927300e+00, 5.85664796e+00, 1.53930220e+01, 1.57966294e+01, 1.58278019e+01], [2.63351372e+00, 3.87113280e+00, 5.72124608e+00, 1.54312262e+01, 1.58074231e+01, 1.58395340e+01], [2.56244556e+00, 3.76287285e+00, 5.58407662e+00, 1.54681979e+01, 1.58182831e+01, 1.58510552e+01], [2.49118267e+00, 3.65451734e+00, 5.44517149e+00, 1.55039443e+01, 1.58291854e+01, 1.58623571e+01], [2.41973308e+00, 3.54608907e+00, 5.30456433e+00, 1.55384733e+01, 1.58401057e+01, 1.58734313e+01], [2.34810468e+00, 3.43760952e+00, 5.16229042e+00, 1.55717939e+01, 1.58510196e+01, 1.58842699e+01], [2.27630514e+00, 3.32909882e+00, 5.01838660e+00, 1.56039154e+01, 1.58619024e+01, 1.58948649e+01], [2.20434195e+00, 3.22057576e+00, 4.87289117e+00, 1.56348481e+01, 1.58727296e+01, 1.59052083e+01], [2.13222245e+00, 3.11205777e+00, 4.72584387e+00, 1.56646028e+01, 1.58834767e+01, 1.59152926e+01], [2.05995377e+00, 3.00356093e+00, 4.57728573e+00, 1.56931907e+01, 1.58941193e+01, 1.59251103e+01], [1.98754288e+00, 2.89509999e+00, 4.42725903e+00, 1.57206235e+01, 1.59046335e+01, 1.59346539e+01], [1.91499656e+00, 2.78668835e+00, 4.27580725e+00, 1.57469133e+01, 1.59149954e+01, 1.59439165e+01], [1.84232146e+00, 2.67833808e+00, 4.12297496e+00, 1.57720725e+01, 1.59251816e+01, 1.59528909e+01], [1.76952401e+00, 2.57005993e+00, 3.96880779e+00, 1.57961136e+01, 1.59351692e+01, 1.59615704e+01], [1.69661051e+00, 2.46186333e+00, 3.81335233e+00, 1.58190493e+01, 1.59449357e+01, 1.59699486e+01], [1.62358710e+00, 2.35375641e+00, 3.65665612e+00, 1.58408924e+01, 1.59544591e+01, 1.59780189e+01], [1.55045976e+00, 2.24574602e+00, 3.49876755e+00, 1.58616557e+01, 1.59637183e+01, 1.59857754e+01], [1.47723431e+00, 2.13783775e+00, 3.33973581e+00, 1.58813519e+01, 1.59726925e+01, 1.59932120e+01], [1.40391643e+00, 2.03003593e+00, 3.17961087e+00, 1.58999937e+01, 1.59813619e+01, 1.60003231e+01], [1.33051166e+00, 1.92234372e+00, 3.01844339e+00, 1.59175935e+01, 1.59897072e+01, 1.60071033e+01], [1.25702542e+00, 1.81476304e+00, 2.85628468e+00, 1.59341635e+01, 1.59977100e+01, 1.60135473e+01], [1.18346297e+00, 1.70729471e+00, 2.69318669e+00, 1.59497156e+01, 1.60053528e+01, 1.60196502e+01], [1.10982948e+00, 1.59993840e+00, 2.52920191e+00, 1.59642614e+01, 1.60126188e+01, 1.60254073e+01], [1.03612996e+00, 1.49269275e+00, 2.36438337e+00, 1.59778120e+01, 1.60194921e+01, 1.60308142e+01], [9.62369353e-01, 1.38555533e+00, 2.19878458e+00, 1.59903781e+01, 1.60259578e+01, 1.60358666e+01], [8.88552464e-01, 1.27852278e+00, 2.03245949e+00, 1.60019699e+01, 1.60320020e+01, 1.60405607e+01], [8.14684015e-01, 1.17159077e+00, 1.86546247e+00, 1.60125969e+01, 1.60376114e+01, 1.60448929e+01], [7.40768631e-01, 1.06475413e+00, 1.69784826e+00, 1.60222682e+01, 1.60427741e+01, 1.60488597e+01], [6.66810854e-01, 9.58006865e-01, 1.52967192e+00, 1.60309922e+01, 1.60474790e+01, 1.60524581e+01], [5.92815147e-01, 8.51342252e-01, 1.36098882e+00, 1.60387766e+01, 1.60517159e+01, 1.60556853e+01], [5.18785904e-01, 7.44752868e-01, 1.19185462e+00, 1.60456283e+01, 1.60554758e+01, 1.60585387e+01], [4.44727457e-01, 6.38230684e-01, 1.02232518e+00, 1.60515536e+01, 1.60587508e+01, 1.60610163e+01], [3.70644079e-01, 5.31767125e-01, 8.52456593e-01, 1.60565579e+01, 1.60615337e+01, 1.60631159e+01], [2.96540000e-01, 4.25353148e-01, 6.82305119e-01, 1.60606459e+01, 1.60638187e+01, 1.60648360e+01], [2.22419407e-01, 3.18979315e-01, 5.11927163e-01, 1.60638214e+01, 1.60656010e+01, 1.60661753e+01], [1.48286457e-01, 2.12635869e-01, 3.41379243e-01, 1.60660875e+01, 1.60668768e+01, 1.60671327e+01], [7.41452829e-02, 1.06312817e-01, 1.70717968e-01, 1.60674463e+01, 1.60676434e+01, 1.60677074e+01], [2.18701057e-06, 2.19691522e-06, 2.20369934e-06, 1.60678991e+01, 1.60678991e+01, 1.60678991e+01]]), array([[2.18701057e-06, 2.19691522e-06, 2.20369934e-06, 1.60678991e+01, 1.60678991e+01, 1.60678991e+01], [8.68987455e-02, 8.68987455e-02, 1.77711678e-01, 1.60674173e+01, 1.60676826e+01, 1.60676826e+01], [1.73771843e-01, 1.73771843e-01, 3.55392732e-01, 1.60659718e+01, 1.60670336e+01, 1.60670336e+01], [2.60593637e-01, 2.60593637e-01, 5.33012548e-01, 1.60635622e+01, 1.60659527e+01, 1.60659527e+01], [3.47338458e-01, 3.47338458e-01, 7.10540526e-01, 1.60601876e+01, 1.60644410e+01, 1.60644410e+01], [4.33980615e-01, 4.33980615e-01, 8.87946095e-01, 1.60558468e+01, 1.60625002e+01, 1.60625002e+01], [5.20494388e-01, 5.20494388e-01, 1.06519872e+00, 1.60505385e+01, 1.60601324e+01, 1.60601324e+01], [6.06854021e-01, 6.06854021e-01, 1.24226790e+00, 1.60442608e+01, 1.60573401e+01, 1.60573401e+01], [6.93033715e-01, 6.93033715e-01, 1.41912319e+00, 1.60370117e+01, 1.60541264e+01, 1.60541264e+01], [7.79007624e-01, 7.79007624e-01, 1.59573422e+00, 1.60287888e+01, 1.60504947e+01, 1.60504947e+01], [8.64749842e-01, 8.64749842e-01, 1.77207066e+00, 1.60195894e+01, 1.60464489e+01, 1.60464489e+01], [9.50234402e-01, 9.50234402e-01, 1.94810227e+00, 1.60094105e+01, 1.60419936e+01, 1.60419936e+01], [1.03543527e+00, 1.03543527e+00, 2.12379889e+00, 1.59982489e+01, 1.60371336e+01, 1.60371336e+01], [1.12032632e+00, 1.12032632e+00, 2.29913045e+00, 1.59861010e+01, 1.60318742e+01, 1.60318742e+01], [1.20488137e+00, 1.20488137e+00, 2.47406698e+00, 1.59729630e+01, 1.60262213e+01, 1.60262213e+01], [1.28907413e+00, 1.28907413e+00, 2.64857859e+00, 1.59588309e+01, 1.60201811e+01, 1.60201811e+01], [1.37287823e+00, 1.37287823e+00, 2.82263554e+00, 1.59437003e+01, 1.60137605e+01, 1.60137605e+01], [1.45626718e+00, 1.45626718e+00, 2.99620815e+00, 1.59275668e+01, 1.60069667e+01, 1.60069667e+01], [1.53921441e+00, 1.53921441e+00, 3.16926692e+00, 1.59104255e+01, 1.59998074e+01, 1.59998074e+01], [1.62169322e+00, 1.62169322e+00, 3.34178242e+00, 1.58922716e+01, 1.59922907e+01, 1.59922907e+01], [1.70367680e+00, 1.70367680e+00, 3.51372537e+00, 1.58730998e+01, 1.59844254e+01, 1.59844254e+01], [1.78513824e+00, 1.78513824e+00, 3.68506663e+00, 1.58529049e+01, 1.59762205e+01, 1.59762205e+01], [1.86605049e+00, 1.86605049e+00, 3.85577716e+00, 1.58316813e+01, 1.59676856e+01, 1.59676856e+01], [1.94638637e+00, 1.94638637e+00, 4.02582809e+00, 1.58094236e+01, 1.59588308e+01, 1.59588308e+01], [2.02611858e+00, 2.02611858e+00, 4.19519065e+00, 1.57861259e+01, 1.59496667e+01, 1.59496667e+01], [2.10521970e+00, 2.10521970e+00, 4.36383622e+00, 1.57617825e+01, 1.59402042e+01, 1.59402042e+01], [2.18366216e+00, 2.18366216e+00, 4.53173632e+00, 1.57363875e+01, 1.59304548e+01, 1.59304548e+01], [2.26141827e+00, 2.26141827e+00, 4.69886256e+00, 1.57099349e+01, 1.59204304e+01, 1.59204304e+01], [2.33846020e+00, 2.33846020e+00, 4.86518671e+00, 1.56824189e+01, 1.59101434e+01, 1.59101434e+01], [2.41475999e+00, 2.41475999e+00, 5.03068062e+00, 1.56538334e+01, 1.58996067e+01, 1.58996067e+01], [2.49028953e+00, 2.49028953e+00, 5.19531627e+00, 1.56241727e+01, 1.58888336e+01, 1.58888336e+01], [2.56502062e+00, 2.56502062e+00, 5.35906572e+00, 1.55934309e+01, 1.58778377e+01, 1.58778377e+01], [2.63892491e+00, 2.63892491e+00, 5.52190112e+00, 1.55616024e+01, 1.58666334e+01, 1.58666334e+01], [2.71197391e+00, 2.71197391e+00, 5.68379466e+00, 1.55286816e+01, 1.58552351e+01, 1.58552351e+01], [2.78413905e+00, 2.78413905e+00, 5.84471859e+00, 1.54946631e+01, 1.58436580e+01, 1.58436580e+01], [2.85539161e+00, 2.85539161e+00, 6.00464518e+00, 1.54595418e+01, 1.58319175e+01, 1.58319175e+01], [2.92570282e+00, 2.92570282e+00, 6.16354668e+00, 1.54233130e+01, 1.58200294e+01, 1.58200294e+01], [2.99504375e+00, 2.99504375e+00, 6.32139531e+00, 1.53859722e+01, 1.58080101e+01, 1.58080101e+01], [3.06338544e+00, 3.06338544e+00, 6.47816320e+00, 1.53475153e+01, 1.57958762e+01, 1.57958762e+01], [3.13069883e+00, 3.13069883e+00, 6.63382235e+00, 1.53079386e+01, 1.57836448e+01, 1.57836448e+01], [3.19695480e+00, 3.19695480e+00, 6.78834460e+00, 1.52672393e+01, 1.57713331e+01, 1.57713331e+01], [3.26212420e+00, 3.26212420e+00, 6.94170153e+00, 1.52254148e+01, 1.57589589e+01, 1.57589589e+01], [3.32617785e+00, 3.32617785e+00, 7.09386444e+00, 1.51824635e+01, 1.57465403e+01, 1.57465403e+01], [3.38908653e+00, 3.38908653e+00, 7.24480421e+00, 1.51383844e+01, 1.57340955e+01, 1.57340955e+01], [3.45082108e+00, 3.45082108e+00, 7.39449126e+00, 1.50931777e+01, 1.57216433e+01, 1.57216433e+01], [3.51135231e+00, 3.51135231e+00, 7.54289542e+00, 1.50468445e+01, 1.57092025e+01, 1.57092025e+01], [3.57065115e+00, 3.57065115e+00, 7.68998576e+00, 1.49993872e+01, 1.56967922e+01, 1.56967922e+01], [3.62868855e+00, 3.62868855e+00, 7.83573054e+00, 1.49508094e+01, 1.56844317e+01, 1.56844317e+01], [3.68543561e+00, 3.68543561e+00, 7.98009691e+00, 1.49011166e+01, 1.56721405e+01, 1.56721405e+01], [3.74086353e+00, 3.74086353e+00, 8.12305082e+00, 1.48503158e+01, 1.56599383e+01, 1.56599383e+01], [3.79494372e+00, 3.79494372e+00, 8.26455669e+00, 1.47984162e+01, 1.56478448e+01, 1.56478448e+01], [3.84764774e+00, 3.84764774e+00, 8.40457720e+00, 1.47454295e+01, 1.56358798e+01, 1.56358798e+01], [3.89894744e+00, 3.89894744e+00, 8.54307290e+00, 1.46913700e+01, 1.56240633e+01, 1.56240633e+01], [3.94881489e+00, 3.94881489e+00, 8.68000183e+00, 1.46362550e+01, 1.56124152e+01, 1.56124152e+01], [3.99722251e+00, 3.99722251e+00, 8.81531907e+00, 1.45801056e+01, 1.56009552e+01, 1.56009552e+01], [4.04414305e+00, 4.04414305e+00, 8.94897617e+00, 1.45229472e+01, 1.55897031e+01, 1.55897031e+01], [4.08954967e+00, 4.08954967e+00, 9.08092045e+00, 1.44648099e+01, 1.55786787e+01, 1.55786787e+01], [4.13341596e+00, 4.13341596e+00, 9.21109424e+00, 1.44057295e+01, 1.55679014e+01, 1.55679014e+01], [4.17571599e+00, 4.17571599e+00, 9.33943387e+00, 1.43457486e+01, 1.55573906e+01, 1.55573906e+01], [4.21642438e+00, 4.21642438e+00, 9.46586854e+00, 1.42849178e+01, 1.55471651e+01, 1.55471651e+01], [4.25551631e+00, 4.25551631e+00, 9.59031884e+00, 1.42232967e+01, 1.55372439e+01, 1.55372439e+01], [4.29296759e+00, 4.29296759e+00, 9.71269507e+00, 1.41609564e+01, 1.55276452e+01, 1.55276452e+01], [4.32875473e+00, 4.32875473e+00, 9.83289509e+00, 1.40979808e+01, 1.55183871e+01, 1.55183871e+01], [4.36285493e+00, 4.36285493e+00, 9.95080172e+00, 1.40344699e+01, 1.55094870e+01, 1.55094870e+01], [4.39524622e+00, 4.39524622e+00, 1.00662796e+01, 1.39705427e+01, 1.55009619e+01, 1.55009619e+01], [4.42590741e+00, 4.42590741e+00, 1.01791712e+01, 1.39063409e+01, 1.54928283e+01, 1.54928283e+01], [4.45481822e+00, 4.45481822e+00, 1.02892922e+01, 1.38420341e+01, 1.54851020e+01, 1.54851020e+01], [4.48195930e+00, 4.48195930e+00, 1.03964254e+01, 1.37778256e+01, 1.54777983e+01, 1.54777983e+01], [4.50731227e+00, 4.50731227e+00, 1.05003136e+01, 1.37139594e+01, 1.54709315e+01, 1.54709315e+01], [4.53085979e+00, 4.53085979e+00, 1.06006514e+01, 1.36507288e+01, 1.54645154e+01, 1.54645154e+01], [4.55258558e+00, 4.55258558e+00, 1.06970744e+01, 1.35884865e+01, 1.54585629e+01, 1.54585629e+01], [4.57247450e+00, 4.57247450e+00, 1.07891482e+01, 1.35276567e+01, 1.54530860e+01, 1.54530860e+01], [4.59051254e+00, 4.59051254e+00, 1.08763552e+01, 1.34687473e+01, 1.54480960e+01, 1.54480960e+01], [4.60668693e+00, 4.60668693e+00, 1.09580822e+01, 1.34123627e+01, 1.54436029e+01, 1.54436029e+01], [4.62098611e+00, 4.62098611e+00, 1.10336096e+01, 1.33592147e+01, 1.54396162e+01, 1.54396162e+01], [4.63339981e+00, 4.63339981e+00, 1.11021066e+01, 1.33101273e+01, 1.54361441e+01, 1.54361441e+01], [4.64391906e+00, 4.64391906e+00, 1.11626377e+01, 1.32660299e+01, 1.54331937e+01, 1.54331937e+01], [4.65253622e+00, 4.65253622e+00, 1.12141885e+01, 1.32279317e+01, 1.54307713e+01, 1.54307713e+01], [4.65924501e+00, 4.65924501e+00, 1.12557173e+01, 1.31968704e+01, 1.54288819e+01, 1.54288819e+01], [4.66404052e+00, 4.66404052e+00, 1.12862369e+01, 1.31738300e+01, 1.54275295e+01, 1.54275295e+01], [4.66691923e+00, 4.66691923e+00, 1.13049205e+01, 1.31596347e+01, 1.54267169e+01, 1.54267169e+01], [4.66787904e+00, 4.66787904e+00, 1.13112137e+01, 1.31548379e+01, 1.54264459e+01, 1.54264459e+01]]), array([[ 4.66787904, 4.66787904, 11.31121369, 13.15483786, 15.42644585, 15.42644585], [ 4.66883944, 4.67093501, 11.31069683, 13.15420714, 15.42624753, 15.42662672], [ 4.6717197 , 4.68008535, 11.30914699, 13.15231706, 15.42565317, 15.42716712], [ 4.67651706, 4.69527771, 11.30656644, 13.14917383, 15.42466453, 15.42806041], [ 4.68322686, 4.71642595, 11.30295898, 13.14478769, 15.42328455, 15.42929564], [ 4.69184265, 4.74341172, 11.29832994, 13.13917277, 15.42151735, 15.43085774], [ 4.70235612, 4.77608661, 11.2926863 , 13.13234687, 15.41936818, 15.43272765], [ 4.71475714, 4.8142747 , 11.28603666, 13.12433117, 15.41684348, 15.43488268], [ 4.72903381, 4.85777545, 11.2783914 , 13.11514998, 15.4139508 , 15.43729674], [ 4.74517241, 4.90636678, 11.26976269, 13.10483036, 15.41069884, 15.43994075], [ 4.7631575 , 4.95980823, 11.26016464, 13.09340178, 15.40709737, 15.44278297], [ 4.78297187, 5.01784414, 11.2496134 , 13.08089571, 15.40315728, 15.44578941], [ 4.80459662, 5.08020666, 11.2381273 , 13.06734527, 15.39889052, 15.4489242 ], [ 4.82801117, 5.14661861, 11.22572702, 13.0527848 , 15.39431009, 15.45215004], [ 4.85319328, 5.21679606, 11.21243575, 13.0372495 , 15.38943 , 15.45542857], [ 4.88011907, 5.29045068, 11.1982794 , 13.02077504, 15.38426525, 15.45872076], [ 4.90876308, 5.36729169, 11.18328681, 13.00339721, 15.37883182, 15.46198731], [ 4.93909829, 5.44702758, 11.16749005, 12.98515157, 15.3731466 , 15.46518895], [ 4.97109613, 5.5293674 , 11.15092462, 12.96607314, 15.3672274 , 15.46828687], [ 5.00472652, 5.61402185, 11.13362983, 12.94619611, 15.36109287, 15.47124292], [ 5.03995793, 5.700704 , 11.11564913, 12.92555359, 15.35476249, 15.47401998], [ 5.07675735, 5.78912978, 11.09703046, 12.90417733, 15.34825653, 15.47658222], [ 5.11509038, 5.87901817, 11.07782674, 12.88209755, 15.34159598, 15.47889527], [ 5.15492119, 5.97009122, 11.05809624, 12.85934274, 15.33480255, 15.48092653], [ 5.19621261, 6.06207386, 11.03790317, 12.83593951, 15.32789857, 15.48264529], [ 5.23892611, 6.15469351, 11.01731817, 12.81191244, 15.32090699, 15.48402293], [ 5.28302184, 6.24767954, 10.99641896, 12.78728396, 15.3138513 , 15.48503308], [ 5.32845864, 6.34076267, 10.9752909 , 12.76207432, 15.30675548, 15.48565171], [ 5.37519406, 6.43367414, 10.9540277 , 12.73630143, 15.29964395, 15.48585731], [ 5.42318436, 6.52614493, 10.93273212, 12.7099809 , 15.2925415 , 15.48563092], [ 5.47238454, 6.61790486, 10.91151663, 12.68312596, 15.28547325, 15.48495625], [ 5.52274835, 6.7086817 , 10.89050415, 12.65574747, 15.27846454, 15.48381973], [ 5.57422825, 6.79820026, 10.86982865, 12.62785393, 15.27154095, 15.48221057], [ 5.62677547, 6.88618163, 10.84963575, 12.5994515 , 15.26472812, 15.48012081], [ 5.68033995, 6.97234249, 10.83008312, 12.57054404, 15.25805176, 15.47754532], [ 5.73487036, 7.05639464, 10.81134075, 12.5411332 , 15.25153756, 15.47448184], [ 5.79031407, 7.13804489, 10.7935908 , 12.51121847, 15.24521107, 15.47093096], [ 5.84661715, 7.21699523, 10.77702722, 12.4807973 , 15.23909766, 15.46689616], [ 5.90372431, 7.2929437 , 10.76185465, 12.44986521, 15.23322244, 15.46238371], [ 5.96157886, 7.36558575, 10.74828691, 12.41841593, 15.22761012, 15.45740272], [ 6.0201227 , 7.43461652, 10.73654446, 12.38644156, 15.22228498, 15.45196503], [ 6.07929625, 7.49973393, 10.72685125, 12.35393277, 15.21727073, 15.44608518], [ 6.13903837, 7.56064276, 10.71943035, 12.32087899, 15.21259043, 15.43978036], [ 6.19928628, 7.61705972, 10.71449888, 12.28726865, 15.20826641, 15.43307027], [ 6.25997552, 7.66871935, 10.71226189, 12.25308943, 15.2043201 , 15.42597708], [ 6.32103977, 7.71538058, 10.71290574, 12.21832858, 15.20077199, 15.41852527], [ 6.3824108 , 7.75683366, 10.71659108, 12.1829732 , 15.19764149, 15.41074154], [ 6.44401828, 7.79290678, 10.72344609, 12.14701063, 15.1949468 , 15.40265463], [ 6.50578968, 7.82347218, 10.73356042, 12.11042881, 15.19270483, 15.39429522], [ 6.56765 , 7.84845077, 10.74698037, 12.07321672, 15.19093108, 15.3856957 ], [ 6.62952167, 7.86781512, 10.76370597, 12.03536482, 15.18963947, 15.37689002], [ 6.69132422, 7.88159025, 10.78369008, 11.99686561, 15.18884231, 15.36791351], [ 6.75297411, 7.88985221, 10.80683981, 11.95771409, 15.18855011, 15.35880262], [ 6.81438433, 7.89272444, 10.83302013, 11.91790844, 15.18877153, 15.34959476], [ 6.87546417, 7.8903724 , 10.86205919, 11.87745058, 15.18951322, 15.34032804], [ 6.93611876, 7.88299691, 10.89375497, 11.83634691, 15.19077974, 15.33104105], [ 6.99624871, 7.87082671, 10.92788271, 11.79460901, 15.19257349, 15.32177261], [ 7.05574959, 7.85411092, 10.9642024 , 11.75225444, 15.19489459, 15.31256153], [ 7.11451149, 7.83311182, 11.00246595, 11.70930758, 15.1977408 , 15.30344637], [ 7.17241836, 7.80809838, 11.04242367, 11.66580048, 15.2011075 , 15.29446521], [ 7.22934748, 7.77934065, 11.08382976, 11.62177384, 15.2049876 , 15.2856554 ], [ 7.28516874, 7.7471053 , 11.12644676, 11.57727795, 15.20937152, 15.27705331], [ 7.33974397, 7.7116521 , 11.17004895, 11.53237371, 15.21424716, 15.26869413], [ 7.39292613, 7.67323138, 11.21442482, 11.48713365, 15.21959992, 15.26061169], [ 7.44455862, 7.6320824 , 11.25937862, 11.44164301, 15.22541272, 15.25283819], [ 7.49447447, 7.58843228, 11.30473122, 11.39600072, 15.23166602, 15.24540409], [ 7.54249562, 7.54249562, 11.3503204 , 11.3503204 , 15.23833788, 15.23833788]]), array([[ 7.54249562, 7.54249562, 11.3503204 , 11.3503204 , 15.23833788, 15.23833788], [ 7.54166641, 7.54166641, 11.35130975, 11.35130975, 15.23801134, 15.23801134], [ 7.53918446, 7.53918446, 11.35427194, 11.35427194, 15.23703255, 15.23703255], [ 7.53506676, 7.53506676, 11.35918952, 11.35918952, 15.23540407, 15.23540407], [ 7.52934132, 7.52934132, 11.36603365, 11.36603365, 15.23313011, 15.23313011], [ 7.52204673, 7.52204673, 11.37476455, 11.37476455, 15.23021665, 15.23021665], [ 7.51323165, 7.51323165, 11.38533198, 11.38533198, 15.22667136, 15.22667136], [ 7.50295407, 7.50295407, 11.39767597, 11.39767597, 15.22250365, 15.22250365], [ 7.49128048, 7.49128048, 11.41172752, 11.41172752, 15.21772475, 15.21772475], [ 7.47828508, 7.47828508, 11.42740943, 11.42740943, 15.21234764, 15.21234764], [ 7.46404878, 7.46404878, 11.44463718, 11.44463718, 15.20638716, 15.20638716], [ 7.44865827, 7.44865827, 11.46331976, 11.46331976, 15.19986003, 15.19986003], [ 7.43220511, 7.43220511, 11.48336059, 11.48336059, 15.19278485, 15.19278485], [ 7.41478473, 7.41478473, 11.50465834, 11.50465834, 15.18518221, 15.18518221], [ 7.39649562, 7.39649562, 11.5271077 , 11.5271077 , 15.17707467, 15.17707467], [ 7.3774384 , 7.3774384 , 11.55060018, 11.55060018, 15.16848683, 15.16848683], [ 7.35771513, 7.35771513, 11.57502474, 11.57502474, 15.15944541, 15.15944541], [ 7.33742851, 7.33742851, 11.60026839, 11.60026839, 15.14997924, 15.14997924], [ 7.3166813 , 7.3166813 , 11.62621676, 11.62621676, 15.14011934, 15.14011934], [ 7.29557569, 7.29557569, 11.65275454, 11.65275454, 15.12989893, 15.12989893], [ 7.27421283, 7.27421283, 11.6797659 , 11.6797659 , 15.11935352, 15.11935352], [ 7.25269237, 7.25269237, 11.7071348 , 11.7071348 , 15.10852087, 15.10852087], [ 7.23111204, 7.23111204, 11.73474528, 11.73474528, 15.09744106, 15.09744106], [ 7.20956738, 7.20956738, 11.76248171, 11.76248171, 15.08615647, 15.08615647], [ 7.1881514 , 7.1881514 , 11.79022897, 11.79022897, 15.07471177, 15.07471177], [ 7.16695438, 7.16695438, 11.81787268, 11.81787268, 15.06315389, 15.06315389], [ 7.14606363, 7.14606363, 11.84529928, 11.84529928, 15.05153196, 15.05153196], [ 7.12556335, 7.12556335, 11.87239625, 11.87239625, 15.03989724, 15.03989724], [ 7.10553446, 7.10553446, 11.89905224, 11.89905224, 15.02830298, 15.02830298], [ 7.08605448, 7.08605448, 11.92515725, 11.92515725, 15.01680429, 15.01680429], [ 7.06719745, 7.06719745, 11.95060282, 11.95060282, 15.00545792, 15.00545792], [ 7.0490338 , 7.0490338 , 11.97528226, 11.97528226, 14.994322 , 14.994322 ], [ 7.0316303 , 7.0316303 , 11.99909093, 11.99909093, 14.98345578, 14.98345578], [ 7.01504997, 7.01504997, 12.02192655, 12.02192655, 14.97291925, 14.97291925], [ 6.99935206, 6.99935206, 12.04368954, 12.04368954, 14.96277273, 14.96277273], [ 6.98459195, 6.98459195, 12.0642835 , 12.0642835 , 14.9530764 , 14.9530764 ], [ 6.97082113, 6.97082113, 12.08361559, 12.08361559, 14.94388978, 14.94388978], [ 6.95808712, 6.95808712, 12.10159715, 12.10159715, 14.93527117, 14.93527117], [ 6.94643348, 6.94643348, 12.1181442 , 12.1181442 , 14.92727697, 14.92727697], [ 6.93589974, 6.93589974, 12.13317811, 12.13317811, 14.91996108, 14.91996108], [ 6.92652136, 6.92652136, 12.14662617, 12.14662617, 14.91337418, 14.91337418], [ 6.9183297 , 6.9183297 , 12.15842227, 12.15842227, 14.90756307, 14.90756307], [ 6.91135203, 6.91135203, 12.16850756, 12.16850756, 14.90256997, 14.90256997], [ 6.90561144, 6.90561144, 12.17683102, 12.17683102, 14.89843186, 14.89843186], [ 6.90112687, 6.90112687, 12.18335004, 12.18335004, 14.89517991, 14.89517991], [ 6.89791305, 6.89791305, 12.18803092, 12.18803092, 14.89283897, 14.89283897], [ 6.89598055, 6.89598055, 12.19084928, 12.19084928, 14.89142709, 14.89142709], [ 6.89533567, 6.89533567, 12.19179039, 12.19179039, 14.89095524, 14.89095524]])], 'eigenvectors': None, 'group_velocities': None}, 'total_dos_dict': {'frequency_points': array([-1.21959488e+00, -1.12531879e+00, -1.03104271e+00, -9.36766620e-01, -8.42490534e-01, -7.48214449e-01, -6.53938363e-01, -5.59662277e-01, -4.65386192e-01, -3.71110106e-01, -2.76834020e-01, -1.82557935e-01, -8.82818488e-02, 5.99423689e-03, 1.00270323e-01, 1.94546408e-01, 2.88822494e-01, 3.83098580e-01, 4.77374665e-01, 5.71650751e-01, 6.65926837e-01, 7.60202922e-01, 8.54479008e-01, 9.48755094e-01, 1.04303118e+00, 1.13730727e+00, 1.23158335e+00, 1.32585944e+00, 1.42013552e+00, 1.51441161e+00, 1.60868769e+00, 1.70296378e+00, 1.79723987e+00, 1.89151595e+00, 1.98579204e+00, 2.08006812e+00, 2.17434421e+00, 2.26862029e+00, 2.36289638e+00, 2.45717246e+00, 2.55144855e+00, 2.64572464e+00, 2.74000072e+00, 2.83427681e+00, 2.92855289e+00, 3.02282898e+00, 3.11710506e+00, 3.21138115e+00, 3.30565724e+00, 3.39993332e+00, 3.49420941e+00, 3.58848549e+00, 3.68276158e+00, 3.77703766e+00, 3.87131375e+00, 3.96558984e+00, 4.05986592e+00, 4.15414201e+00, 4.24841809e+00, 4.34269418e+00, 4.43697026e+00, 4.53124635e+00, 4.62552244e+00, 4.71979852e+00, 4.81407461e+00, 4.90835069e+00, 5.00262678e+00, 5.09690286e+00, 5.19117895e+00, 5.28545504e+00, 5.37973112e+00, 5.47400721e+00, 5.56828329e+00, 5.66255938e+00, 5.75683546e+00, 5.85111155e+00, 5.94538764e+00, 6.03966372e+00, 6.13393981e+00, 6.22821589e+00, 6.32249198e+00, 6.41676806e+00, 6.51104415e+00, 6.60532024e+00, 6.69959632e+00, 6.79387241e+00, 6.88814849e+00, 6.98242458e+00, 7.07670066e+00, 7.17097675e+00, 7.26525284e+00, 7.35952892e+00, 7.45380501e+00, 7.54808109e+00, 7.64235718e+00, 7.73663326e+00, 7.83090935e+00, 7.92518544e+00, 8.01946152e+00, 8.11373761e+00, 8.20801369e+00, 8.30228978e+00, 8.39656586e+00, 8.49084195e+00, 8.58511804e+00, 8.67939412e+00, 8.77367021e+00, 8.86794629e+00, 8.96222238e+00, 9.05649846e+00, 9.15077455e+00, 9.24505064e+00, 9.33932672e+00, 9.43360281e+00, 9.52787889e+00, 9.62215498e+00, 9.71643106e+00, 9.81070715e+00, 9.90498323e+00, 9.99925932e+00, 1.00935354e+01, 1.01878115e+01, 1.02820876e+01, 1.03763637e+01, 1.04706397e+01, 1.05649158e+01, 1.06591919e+01, 1.07534680e+01, 1.08477441e+01, 1.09420202e+01, 1.10362963e+01, 1.11305723e+01, 1.12248484e+01, 1.13191245e+01, 1.14134006e+01, 1.15076767e+01, 1.16019528e+01, 1.16962289e+01, 1.17905049e+01, 1.18847810e+01, 1.19790571e+01, 1.20733332e+01, 1.21676093e+01, 1.22618854e+01, 1.23561615e+01, 1.24504375e+01, 1.25447136e+01, 1.26389897e+01, 1.27332658e+01, 1.28275419e+01, 1.29218180e+01, 1.30160941e+01, 1.31103701e+01, 1.32046462e+01, 1.32989223e+01, 1.33931984e+01, 1.34874745e+01, 1.35817506e+01, 1.36760267e+01, 1.37703027e+01, 1.38645788e+01, 1.39588549e+01, 1.40531310e+01, 1.41474071e+01, 1.42416832e+01, 1.43359593e+01, 1.44302353e+01, 1.45245114e+01, 1.46187875e+01, 1.47130636e+01, 1.48073397e+01, 1.49016158e+01, 1.49958919e+01, 1.50901679e+01, 1.51844440e+01, 1.52787201e+01, 1.53729962e+01, 1.54672723e+01, 1.55615484e+01, 1.56558245e+01, 1.57501005e+01, 1.58443766e+01, 1.59386527e+01, 1.60329288e+01, 1.61272049e+01, 1.62214810e+01, 1.63157571e+01, 1.64100331e+01, 1.65043092e+01, 1.65985853e+01, 1.66928614e+01, 1.67871375e+01, 1.68814136e+01, 1.69756897e+01, 1.70699657e+01, 1.71642418e+01, 1.72585179e+01, 1.73527940e+01, 1.74470701e+01, 1.75413462e+01, 1.76356223e+01]), 'total_dos': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 3.17526949e-04, 1.35171618e-03, 2.50831797e-03, 3.78733233e-03, 5.26373813e-03, 6.90328284e-03, 8.78451412e-03, 1.08845716e-02, 1.31202482e-02, 1.58239881e-02, 1.84817583e-02, 2.14099537e-02, 2.44295300e-02, 2.78000795e-02, 3.14939706e-02, 3.52413320e-02, 3.92909859e-02, 4.36423577e-02, 4.83495504e-02, 5.31903107e-02, 5.81462801e-02, 6.35669356e-02, 6.94844360e-02, 7.55171874e-02, 8.19720137e-02, 8.86760193e-02, 9.58023138e-02, 1.03099606e-01, 1.11366958e-01, 1.19969573e-01, 1.28656383e-01, 1.38210214e-01, 1.48087177e-01, 1.58993039e-01, 1.70577194e-01, 1.82773665e-01, 1.96102840e-01, 2.10318186e-01, 2.25609695e-01, 2.42775583e-01, 2.61718244e-01, 2.82966510e-01, 3.07071183e-01, 3.35572804e-01, 3.71503640e-01, 4.23538191e-01, 5.01245367e-01, 5.06757340e-01, 5.10673514e-01, 5.13884731e-01, 5.18635687e-01, 5.22215630e-01, 5.26790868e-01, 5.30317993e-01, 5.33703746e-01, 5.38149099e-01, 5.41609848e-01, 5.45017573e-01, 5.48177732e-01, 5.52308667e-01, 5.54935999e-01, 5.58609041e-01, 5.61624143e-01, 5.64469403e-01, 5.68022742e-01, 5.70890330e-01, 5.72980739e-01, 5.77439994e-01, 5.83268678e-01, 5.49870464e-01, 4.81961887e-01, 4.49243839e-01, 4.26254220e-01, 4.10187378e-01, 3.95199652e-01, 3.98624284e-01, 4.05995249e-01, 4.25103229e-01, 4.54252120e-01, 4.65563502e-01, 3.65773926e-01, 2.85541037e-01, 2.23526600e-01, 1.44473263e-01, 1.04439534e-01, 1.08917911e-01, 1.13417776e-01, 1.18953226e-01, 1.24441198e-01, 1.29621905e-01, 1.36164980e-01, 1.42605861e-01, 1.49045426e-01, 1.56851391e-01, 1.64582559e-01, 1.72682584e-01, 1.82141611e-01, 1.91321788e-01, 2.02261449e-01, 2.13762731e-01, 2.26135950e-01, 2.40393404e-01, 2.55442497e-01, 2.74046636e-01, 2.93902607e-01, 3.19085171e-01, 3.48960866e-01, 3.91473391e-01, 4.54354038e-01, 5.99226889e-01, 6.56603266e-01, 4.43486451e-01, 3.58148235e-01, 2.92612110e-01, 2.34458733e-01, 1.57664249e-01, 9.44996839e-02, 7.64989495e-02, 6.21782198e-02, 7.46273535e-02, 8.86461614e-02, 1.06333999e-01, 1.36147948e-01, 1.87831258e-01, 2.67221370e-01, 2.89615750e-01, 3.09688343e-01, 3.30425521e-01, 3.30668402e-01, 3.40062237e-01, 3.45284499e-01, 3.55917538e-01, 3.60077500e-01, 3.69186627e-01, 3.71502854e-01, 3.72120651e-01, 3.48181936e-01, 3.16317708e-01, 2.98435672e-01, 2.84862196e-01, 2.74096441e-01, 2.64721157e-01, 2.56360104e-01, 2.48761334e-01, 2.41852996e-01, 2.35018844e-01, 2.28859604e-01, 2.22571780e-01, 2.16655364e-01, 2.10807826e-01, 2.04860365e-01, 1.99221497e-01, 1.93100666e-01, 1.87355107e-01, 2.53244401e-01, 8.43177422e-01, 1.43196664e+00, 3.18170027e+00, 2.79552678e+00, 3.13543115e+00, 4.55809708e+00, 2.72396129e+00, 1.52338820e+00, 1.06733102e+00, 7.67955185e-01, 5.18138351e-01, 2.28096624e-01, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00])}, 'dynamical_matrix': array([[ 5.50912534e-01-0.00000000e+00j, 1.87768043e-17-4.38872430e-34j, 1.92709307e-17+5.81987920e-18j, -3.23420540e-17+4.98906381e-17j, -1.68412801e-30+5.84523400e-17j, -3.95652763e-17-3.56372327e-01j], [ 1.87768043e-17+4.38872430e-34j, 6.08181944e-01-0.00000000e+00j, -1.56143951e-16-1.15555797e-33j, -7.84788746e-30+5.84523400e-17j, -3.23420540e-17+2.45450096e-18j, 4.20932852e-30+1.58872850e-17j], [ 1.92709307e-17-5.81987920e-18j, -1.56143951e-16+1.15555797e-33j, 5.50912534e-01-0.00000000e+00j, -3.95652763e-17-3.56372327e-01j, 8.83023845e-30+1.58872850e-17j, -3.23420540e-17-3.36800318e-19j], [-3.23420540e-17-4.98906381e-17j, -7.84788746e-30-5.84523400e-17j, -3.95652763e-17+3.56372327e-01j, 5.50912534e-01-0.00000000e+00j, -9.24016421e-17-9.32340591e-30j, -8.30132400e-17-1.39858661e-29j], [-1.68412801e-30-5.84523400e-17j, -3.23420540e-17-2.45450096e-18j, 8.83023845e-30-1.58872850e-17j, -9.24016421e-17+9.32340591e-30j, 6.08181944e-01-0.00000000e+00j, -1.49226181e-16+4.66355445e-30j], [-3.95652763e-17+3.56372327e-01j, 4.20932852e-30-1.58872850e-17j, -3.23420540e-17+3.36800318e-19j, -8.30132400e-17+1.39858661e-29j, -1.49226181e-16-4.66355445e-30j, 5.50912534e-01-0.00000000e+00j]]), 'force_constants': array([[[[ 1.57151912e+01, 9.62277932e-16, 9.62277932e-16], [ 2.01508898e-31, 1.57151912e+01, -3.56057418e-15], [-6.31781728e-30, -4.83151945e-15, 1.57151912e+01]], [[-8.88178420e-13, -2.31481372e-29, -6.32321319e-29], [ 8.33886532e-31, 1.11022302e-12, -2.01086934e-28], [ 3.91666326e-46, -3.53409686e-28, 1.11022302e-12]], [[ 1.11022302e-12, 7.59032102e-29, 1.18329136e-28], [-1.78078948e-29, -8.88178420e-13, -4.17598292e-28], [ 5.04870979e-29, 2.72945873e-28, 1.11022302e-12]], ..., [[-6.32890635e-13, 5.20587829e-13, -5.20587829e-13], [-1.25573862e-13, -5.61838490e-13, -2.31561886e-13], [ 1.25573862e-13, -2.31561886e-13, -5.61838490e-13]], [[-5.61838490e-13, -1.25573862e-13, -2.31561886e-13], [ 5.20587829e-13, -6.32890635e-13, -5.20587829e-13], [-2.31561886e-13, 1.25573862e-13, -5.61838490e-13]], [[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]]], [[[-8.88178420e-13, -2.31481372e-29, -6.32321319e-29], [ 8.33886532e-31, 1.11022302e-12, -2.01086934e-28], [ 1.63734993e-45, -3.53409686e-28, 1.11022302e-12]], [[ 1.57151912e+01, 9.62277932e-16, 9.62277932e-16], [ 2.19141532e-31, 1.57151912e+01, -3.56057418e-15], [-6.30018465e-30, -4.83151945e-15, 1.57151912e+01]], [[ 1.59872116e-12, 7.17863424e-29, 1.13595970e-28], [ 2.73057674e-29, 1.59872116e-12, -1.11175775e-27], [ 5.04870979e-29, -4.03896783e-28, 4.08562073e-12]], ..., [[-3.70859075e+00, -2.50222375e+00, 2.50222375e+00], [-2.50222375e+00, -3.70859075e+00, 2.50222375e+00], [ 2.50222375e+00, 2.50222375e+00, -3.70859075e+00]], [[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]], [[-5.61838490e-13, -1.25573862e-13, -2.31561886e-13], [ 5.20587829e-13, -6.32890635e-13, -5.20587829e-13], [-2.31561886e-13, 1.25573862e-13, -5.61838490e-13]]], [[[ 1.11022302e-12, 7.59032102e-29, 1.18329136e-28], [-1.78078948e-29, -8.88178420e-13, -4.17598292e-28], [ 5.04870979e-29, 2.72945873e-28, 1.11022302e-12]], [[ 1.59872116e-12, 7.17863424e-29, 1.13595970e-28], [ 2.73057674e-29, 1.59872116e-12, -1.11175775e-27], [ 5.04870979e-29, -4.03896783e-28, 4.08562073e-12]], [[ 1.57151912e+01, 9.62277932e-16, 9.62277932e-16], [ 2.19141532e-31, 1.57151912e+01, -3.56057418e-15], [-6.30018465e-30, -4.83151945e-15, 1.57151912e+01]], ..., [[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]], [[-3.70859075e+00, -2.50222375e+00, 2.50222375e+00], [-2.50222375e+00, -3.70859075e+00, 2.50222375e+00], [ 2.50222375e+00, 2.50222375e+00, -3.70859075e+00]], [[-6.32890635e-13, 5.20587829e-13, -5.20587829e-13], [-1.25573862e-13, -5.61838490e-13, -2.31561886e-13], [ 1.25573862e-13, -2.31561886e-13, -5.61838490e-13]]], ..., [[[-6.32890635e-13, 5.20587829e-13, -5.20587829e-13], [-1.25573862e-13, -5.61838490e-13, -2.31561886e-13], [ 1.25573862e-13, -2.31561886e-13, -5.61838490e-13]], [[-3.70859075e+00, -2.50222375e+00, 2.50222375e+00], [-2.50222375e+00, -3.70859075e+00, 2.50222375e+00], [ 2.50222375e+00, 2.50222375e+00, -3.70859075e+00]], [[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]], ..., [[ 1.57151912e+01, -2.88683380e-15, -2.88683380e-15], [-1.92455586e-15, 1.57151912e+01, -4.83151945e-15], [-1.92455586e-15, -3.56057418e-15, 1.57151912e+01]], [[ 1.59872116e-12, -2.84139296e-28, -6.91248574e-28], [-1.83165100e-28, 1.59872116e-12, -1.36396903e-27], [-4.81749809e-28, -2.63475263e-28, 4.08562073e-12]], [[ 1.11022302e-12, 4.85458861e-29, -1.58051213e-28], [ 9.61487114e-29, -8.88178420e-13, -4.50532933e-28], [-1.17892900e-28, 2.33671810e-28, 1.11022302e-12]]], [[[-5.61838490e-13, -1.25573862e-13, -2.31561886e-13], [ 5.20587829e-13, -6.32890635e-13, -5.20587829e-13], [-2.31561886e-13, 1.25573862e-13, -5.61838490e-13]], [[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]], [[-3.70859075e+00, -2.50222375e+00, 2.50222375e+00], [-2.50222375e+00, -3.70859075e+00, 2.50222375e+00], [ 2.50222375e+00, 2.50222375e+00, -3.70859075e+00]], ..., [[ 1.59872116e-12, -2.84139296e-28, -6.91248574e-28], [-1.83165100e-28, 1.59872116e-12, -1.36396903e-27], [-4.81749809e-28, -2.63475263e-28, 4.08562073e-12]], [[ 1.57151912e+01, -2.88683380e-15, -2.88683380e-15], [-1.92455586e-15, 1.57151912e+01, -4.83151945e-15], [-1.92455586e-15, -3.56057418e-15, 1.57151912e+01]], [[-8.88178420e-13, -7.27309754e-29, -1.12814970e-28], [-1.35963107e-28, 1.11022302e-12, -3.53409686e-28], [-1.36796994e-28, -2.01086934e-28, 1.11022302e-12]]], [[[-1.15412764e-12, -4.39732284e-13, 3.10095250e-14], [-4.39732284e-13, -1.15412764e-12, 3.10095250e-14], [ 1.56993370e-13, 1.56993370e-13, -7.37047351e-13]], [[-5.61838490e-13, -1.25573862e-13, -2.31561886e-13], [ 5.20587829e-13, -6.32890635e-13, -5.20587829e-13], [-2.31561886e-13, 1.25573862e-13, -5.61838490e-13]], [[-6.32890635e-13, 5.20587829e-13, -5.20587829e-13], [-1.25573862e-13, -5.61838490e-13, -2.31561886e-13], [ 1.25573862e-13, -2.31561886e-13, -5.61838490e-13]], ..., [[ 1.11022302e-12, 4.85458861e-29, -1.58051213e-28], [ 9.61487114e-29, -8.88178420e-13, -4.50532933e-28], [-1.17892900e-28, 2.33671810e-28, 1.11022302e-12]], [[-8.88178420e-13, -7.27309754e-29, -1.12814970e-28], [-1.35963107e-28, 1.11022302e-12, -3.53409686e-28], [-1.36796994e-28, -2.01086934e-28, 1.11022302e-12]], [[ 1.57151912e+01, -2.88683380e-15, -2.88683380e-15], [-1.92455586e-15, 1.57151912e+01, -4.83151945e-15], [-1.92455586e-15, -3.56057418e-15, 1.57151912e+01]]]])}
The calcualtion of the finite temperature phonons starts by computing the molecular dynamics trajectory using the
calc_molecular_dynamics_phonons_with_lammpslib()
function. This function is internally linked to DynaPhoPy
to return an dynaphopy.dynamics.Dynamics
object:
trajectory = calc_molecular_dynamics_phonons_with_lammpslib(
structure_ase=structure_ase,
potential_dataframe=potential_dataframe,
force_constants=workflow.phonopy.get_force_constants(),
phonopy_unitcell=workflow.phonopy.get_unitcell(),
phonopy_primitive_matrix=workflow.phonopy.get_primitive_matrix(),
phonopy_supercell_matrix=workflow.phonopy.get_supercell_matrix(),
total_time=2, # ps
time_step=0.001, # ps
relaxation_time=5, # ps
silent=True,
supercell=[2, 2, 2],
memmap=False,
velocity_only=True,
temperature=600,
)
When a total of 2 picoseconds is selected to compute the finite temperature phonons with a timestep of 1 femto second then this results in a total of 2000 molecular dynamics steps. While more molecular dynamics steps result in more precise predictions they also require more computational resources.
The postprocessing is executed using the DynaPhoPy package:
calculation = Quasiparticle(trajectory)
calculation.select_power_spectra_algorithm(2) # select FFT algorithm
calculation.get_renormalized_phonon_dispersion_bands()
renormalized_force_constants = (
calculation.get_renormalized_force_constants().get_array()
)
renormalized_force_constants
Using 2000 steps Using Fast Fourier transform (Numpy) function set frequency range: 0.0 - 21.200000000000003 Q-point: 1 / 32 [ 0.00000 0.00000 0.00000 ] Harmonic frequencies (THz): [2.18910938e-06 2.19854601e-06 2.20383682e-06 1.60678991e+01 1.60678991e+01 1.60678991e+01] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector MD cell size relation: [2 2 2] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Peak # 1 ---------------------------------------------- Width 0.472941 THz Position 0.032545 THz Area (<K>) (Lorentzian) 0.000000 eV Area (<K>) (Total) 0.000000 eV <|dQ/dt|^2> 0.000000 eV Occupation number -0.500000 Fit temperature nan K Base line -0.000000 eV * ps Maximum height 0.000000 eV * ps Fitting global error 534601240663.551514 Frequency shift 0.032543 THz Peak # 2 ---------------------------------------------- Width 0.472941 THz Position 0.032545 THz Area (<K>) (Lorentzian) 0.000000 eV Area (<K>) (Total) 0.000000 eV <|dQ/dt|^2> 0.000000 eV Occupation number -0.500000 Fit temperature nan K Base line -0.000000 eV * ps Maximum height 0.000000 eV * ps Fitting global error 534601240663.551514 Frequency shift 0.032543 THz Peak # 3 ---------------------------------------------- Width 0.472941 THz Position 0.032545 THz Area (<K>) (Lorentzian) 0.000000 eV Area (<K>) (Total) 0.000000 eV <|dQ/dt|^2> 0.000000 eV Occupation number -0.500000 Fit temperature nan K Base line -0.000000 eV * ps Maximum height 0.000000 eV * ps Fitting global error 534601240663.551514 Frequency shift 0.032543 THz Peak # 4 ---------------------------------------------- Width 0.786715 THz Position 15.561772 THz Area (<K>) (Lorentzian) 0.014497 eV Area (<K>) (Total) 0.013722 eV <|dQ/dt|^2> 0.028993 eV Occupation number 2.330539 Fit temperature 332.921392 K Base line -0.000016 eV * ps Maximum height 0.011731 eV * ps Fitting global error 0.033291 Frequency shift -0.506127 THz Peak # 5 ---------------------------------------------- Width 0.786715 THz Position 15.561772 THz Area (<K>) (Lorentzian) 0.014497 eV Area (<K>) (Total) 0.013722 eV <|dQ/dt|^2> 0.028993 eV Occupation number 2.330539 Fit temperature 332.921392 K Base line -0.000016 eV * ps Maximum height 0.011731 eV * ps Fitting global error 0.033291 Frequency shift -0.506127 THz Peak # 6 ---------------------------------------------- Width 0.786715 THz Position 15.561772 THz Area (<K>) (Lorentzian) 0.014497 eV Area (<K>) (Total) 0.013722 eV <|dQ/dt|^2> 0.028993 eV Occupation number 2.330539 Fit temperature 332.921392 K Base line -0.000016 eV * ps Maximum height 0.011731 eV * ps Fitting global error 0.033291 Frequency shift -0.506127 THz Fixing gamma point 0 frequencies Q-point: 2 / 32 [ 0.00000 0.25000 0.25000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Peak # 1 ---------------------------------------------- Width 0.520799 THz Position 4.512511 THz Area (<K>) (Lorentzian) 0.018113 eV Area (<K>) (Total) 0.016786 eV <|dQ/dt|^2> 0.036226 eV Occupation number 11.696398 Fit temperature 420.145058 K Base line -0.000042 eV * ps Maximum height 0.022141 eV * ps Fitting global error 0.016919 Frequency shift -0.151463 THz Peak # 2 ---------------------------------------------- Width 0.520799 THz Position 4.512511 THz Area (<K>) (Lorentzian) 0.018113 eV Area (<K>) (Total) 0.016786 eV <|dQ/dt|^2> 0.036226 eV Occupation number 11.696398 Fit temperature 420.145058 K Base line -0.000042 eV * ps Maximum height 0.022141 eV * ps Fitting global error 0.016919 Frequency shift -0.151463 THz Peak # 3 ---------------------------------------------- Width 0.884643 THz Position 6.802090 THz Area (<K>) (Lorentzian) 0.034381 eV Area (<K>) (Total) 0.042075 eV <|dQ/dt|^2> 0.068762 eV Occupation number 14.858240 Fit temperature 797.669964 K Base line 0.000413 eV * ps Maximum height 0.024742 eV * ps Fitting global error 0.034947 Frequency shift -0.096079 THz Peak # 4 ---------------------------------------------- Width 0.816224 THz Position 14.710909 THz Area (<K>) (Lorentzian) 0.050561 eV Area (<K>) (Total) 0.056117 eV <|dQ/dt|^2> 0.101122 eV Occupation number 9.943370 Fit temperature 1172.575784 K Base line 0.000331 eV * ps Maximum height 0.039435 eV * ps Fitting global error 0.029537 Frequency shift -0.459579 THz Peak # 5 ---------------------------------------------- Width 0.906396 THz Position 15.069443 THz Area (<K>) (Lorentzian) 0.021839 eV Area (<K>) (Total) 0.023547 eV <|dQ/dt|^2> 0.043678 eV Occupation number 3.903565 Fit temperature 504.681860 K Base line 0.000115 eV * ps Maximum height 0.015339 eV * ps Fitting global error 0.023072 Frequency shift -0.486236 THz Peak # 6 ---------------------------------------------- Width 0.906396 THz Position 15.069443 THz Area (<K>) (Lorentzian) 0.021839 eV Area (<K>) (Total) 0.023547 eV <|dQ/dt|^2> 0.043678 eV Occupation number 3.903565 Fit temperature 504.681860 K Base line 0.000115 eV * ps Maximum height 0.015339 eV * ps Fitting global error 0.023072 Frequency shift -0.486236 THz Q-point: 3 / 32 [ 0.00000 0.50000 0.50000 ] Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Peak # 1 ---------------------------------------------- Width 0.579259 THz Position 6.561490 THz Area (<K>) (Lorentzian) 0.025327 eV Area (<K>) (Total) 0.027369 eV <|dQ/dt|^2> 0.050654 eV Occupation number 11.228659 Fit temperature 587.462942 K Base line 0.000121 eV * ps Maximum height 0.027835 eV * ps Fitting global error 0.025639 Frequency shift -0.333845 THz Peak # 2 ---------------------------------------------- Width 0.579259 THz Position 6.561490 THz Area (<K>) (Lorentzian) 0.025327 eV Area (<K>) (Total) 0.027369 eV <|dQ/dt|^2> 0.050654 eV Occupation number 11.228659 Fit temperature 587.462942 K Base line 0.000121 eV * ps Maximum height 0.027835 eV * ps Fitting global error 0.025639 Frequency shift -0.333845 THz Peak # 3 ---------------------------------------------- Width 0.605260 THz Position 11.933579 THz Area (<K>) (Lorentzian) 0.030516 eV Area (<K>) (Total) 0.034730 eV <|dQ/dt|^2> 0.061032 eV Occupation number 7.270035 Fit temperature 707.271378 K Base line 0.000225 eV * ps Maximum height 0.032097 eV * ps Fitting global error 0.023688 Frequency shift -0.258211 THz Peak # 4 ---------------------------------------------- Width 0.605260 THz Position 11.933579 THz Area (<K>) (Lorentzian) 0.030516 eV Area (<K>) (Total) 0.034730 eV <|dQ/dt|^2> 0.061032 eV Occupation number 7.270035 Fit temperature 707.271378 K Base line 0.000225 eV * ps Maximum height 0.032097 eV * ps Fitting global error 0.023688 Frequency shift -0.258211 THz Peak # 5 ---------------------------------------------- Width 0.634083 THz Position 14.446261 THz Area (<K>) (Lorentzian) 0.042334 eV Area (<K>) (Total) 0.048339 eV <|dQ/dt|^2> 0.084669 eV Occupation number 8.404323 Fit temperature 981.504236 K Base line 0.000327 eV * ps Maximum height 0.042504 eV * ps Fitting global error 0.015367 Frequency shift -0.444694 THz Peak # 6 ---------------------------------------------- Width 0.634083 THz Position 14.446261 THz Area (<K>) (Lorentzian) 0.042334 eV Area (<K>) (Total) 0.048339 eV <|dQ/dt|^2> 0.084669 eV Occupation number 8.404323 Fit temperature 981.504236 K Base line 0.000327 eV * ps Maximum height 0.042504 eV * ps Fitting global error 0.015367 Frequency shift -0.444694 THz Q-point: 4 / 32 [ 0.00000 0.75000 0.75000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Peak # 1 ---------------------------------------------- Width 0.513715 THz Position 4.501773 THz Area (<K>) (Lorentzian) 0.024073 eV Area (<K>) (Total) 0.021107 eV <|dQ/dt|^2> 0.048147 eV Occupation number 15.748632 Fit temperature 558.542395 K Base line -0.000113 eV * ps Maximum height 0.029833 eV * ps Fitting global error 0.014530 Frequency shift -0.162201 THz Peak # 2 ---------------------------------------------- Width 0.513715 THz Position 4.501773 THz Area (<K>) (Lorentzian) 0.024073 eV Area (<K>) (Total) 0.021107 eV <|dQ/dt|^2> 0.048147 eV Occupation number 15.748632 Fit temperature 558.542395 K Base line -0.000113 eV * ps Maximum height 0.029833 eV * ps Fitting global error 0.014530 Frequency shift -0.162201 THz Peak # 3 ---------------------------------------------- Width 0.840450 THz Position 6.833587 THz Area (<K>) (Lorentzian) 0.047750 eV Area (<K>) (Total) 0.056965 eV <|dQ/dt|^2> 0.095499 eV Occupation number 20.731750 Fit temperature 1108.018836 K Base line 0.000500 eV * ps Maximum height 0.036169 eV * ps Fitting global error 0.027488 Frequency shift -0.064582 THz Peak # 4 ---------------------------------------------- Width 0.864892 THz Position 14.761576 THz Area (<K>) (Lorentzian) 0.036911 eV Area (<K>) (Total) 0.042399 eV <|dQ/dt|^2> 0.073823 eV Occupation number 7.097870 Fit temperature 855.439740 K Base line 0.000312 eV * ps Maximum height 0.027169 eV * ps Fitting global error 0.033172 Frequency shift -0.408912 THz Peak # 5 ---------------------------------------------- Width 0.690963 THz Position 15.047965 THz Area (<K>) (Lorentzian) 0.029989 eV Area (<K>) (Total) 0.029744 eV <|dQ/dt|^2> 0.059977 eV Occupation number 5.555378 Fit temperature 694.419722 K Base line 0.000024 eV * ps Maximum height 0.027630 eV * ps Fitting global error 0.016899 Frequency shift -0.507714 THz Peak # 6 ---------------------------------------------- Width 0.690963 THz Position 15.047965 THz Area (<K>) (Lorentzian) 0.029989 eV Area (<K>) (Total) 0.029744 eV <|dQ/dt|^2> 0.059977 eV Occupation number 5.555378 Fit temperature 694.419722 K Base line 0.000024 eV * ps Maximum height 0.027630 eV * ps Fitting global error 0.016899 Frequency shift -0.507714 THz Q-point: 5 / 32 [ 0.25000 0.00000 0.25000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Skipped, equivalent to [0. 0.25 0.25] Q-point: 6 / 32 [ 0.25000 0.25000 0.50000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Peak # 1 ---------------------------------------------- Width 0.528069 THz Position 4.477183 THz Area (<K>) (Lorentzian) 0.042227 eV Area (<K>) (Total) 0.040708 eV <|dQ/dt|^2> 0.084453 eV Occupation number 28.158070 Fit temperature 979.942696 K Base line -0.000024 eV * ps Maximum height 0.050907 eV * ps Fitting global error 0.012211 Frequency shift -0.190696 THz Peak # 2 ---------------------------------------------- Width 0.890764 THz Position 6.695151 THz Area (<K>) (Lorentzian) 0.080890 eV Area (<K>) (Total) 0.093342 eV <|dQ/dt|^2> 0.161780 eV Occupation number 36.211198 Fit temperature 1877.262480 K Base line 0.000706 eV * ps Maximum height 0.057811 eV * ps Fitting global error 0.020823 Frequency shift -0.265939 THz Peak # 3 ---------------------------------------------- Width 0.879866 THz Position 8.803246 THz Area (<K>) (Lorentzian) 0.043886 eV Area (<K>) (Total) 0.052217 eV <|dQ/dt|^2> 0.087772 eV Occupation number 14.647678 Fit temperature 1018.178741 K Base line 0.000449 eV * ps Maximum height 0.031753 eV * ps Fitting global error 0.028094 Frequency shift -0.202601 THz Peak # 4 ---------------------------------------------- Width 0.757650 THz Position 13.371395 THz Area (<K>) (Lorentzian) 0.021906 eV Area (<K>) (Total) 0.026391 eV <|dQ/dt|^2> 0.043812 eV Occupation number 4.477924 Fit temperature 506.700041 K Base line 0.000237 eV * ps Maximum height 0.018407 eV * ps Fitting global error 0.037761 Frequency shift -0.353521 THz Peak # 5 ---------------------------------------------- Width 0.668122 THz Position 14.983805 THz Area (<K>) (Lorentzian) 0.023784 eV Area (<K>) (Total) 0.024310 eV <|dQ/dt|^2> 0.047568 eV Occupation number 4.323155 Fit temperature 550.026025 K Base line 0.000052 eV * ps Maximum height 0.022663 eV * ps Fitting global error 0.013903 Frequency shift -0.442641 THz Peak # 6 ---------------------------------------------- Width 0.793991 THz Position 15.147433 THz Area (<K>) (Lorentzian) 0.067893 eV Area (<K>) (Total) 0.078771 eV <|dQ/dt|^2> 0.135785 eV Occupation number 13.119087 Fit temperature 1575.015042 K Base line 0.000607 eV * ps Maximum height 0.054436 eV * ps Fitting global error 0.022076 Frequency shift -0.435323 THz Q-point: 7 / 32 [ 0.25000 0.50000 0.75000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Peak # 1 ---------------------------------------------- Width 0.907126 THz Position 7.246330 THz Area (<K>) (Lorentzian) 0.086024 eV Area (<K>) (Total) 0.104037 eV <|dQ/dt|^2> 0.172047 eV Occupation number 35.571453 Fit temperature 1996.396673 K Base line 0.000973 eV * ps Maximum height 0.060371 eV * ps Fitting global error 0.020717 Frequency shift -0.296166 THz Peak # 2 ---------------------------------------------- Width 0.907126 THz Position 7.246330 THz Area (<K>) (Lorentzian) 0.086024 eV Area (<K>) (Total) 0.104037 eV <|dQ/dt|^2> 0.172047 eV Occupation number 35.571453 Fit temperature 1996.396673 K Base line 0.000973 eV * ps Maximum height 0.060371 eV * ps Fitting global error 0.020717 Frequency shift -0.296166 THz Peak # 3 ---------------------------------------------- Width 0.639111 THz Position 11.064519 THz Area (<K>) (Lorentzian) 0.021923 eV Area (<K>) (Total) 0.025269 eV <|dQ/dt|^2> 0.043847 eV Occupation number 5.520612 Fit temperature 507.650279 K Base line 0.000178 eV * ps Maximum height 0.021838 eV * ps Fitting global error 0.024793 Frequency shift -0.285801 THz Peak # 4 ---------------------------------------------- Width 0.639111 THz Position 11.064519 THz Area (<K>) (Lorentzian) 0.021923 eV Area (<K>) (Total) 0.025269 eV <|dQ/dt|^2> 0.043847 eV Occupation number 5.520612 Fit temperature 507.650279 K Base line 0.000178 eV * ps Maximum height 0.021838 eV * ps Fitting global error 0.024793 Frequency shift -0.285801 THz Peak # 5 ---------------------------------------------- Width 0.828868 THz Position 14.801411 THz Area (<K>) (Lorentzian) 0.039716 eV Area (<K>) (Total) 0.043893 eV <|dQ/dt|^2> 0.079432 eV Occupation number 7.653201 Fit temperature 920.616703 K Base line 0.000252 eV * ps Maximum height 0.030504 eV * ps Fitting global error 0.031513 Frequency shift -0.436927 THz Peak # 6 ---------------------------------------------- Width 0.828868 THz Position 14.801411 THz Area (<K>) (Lorentzian) 0.039716 eV Area (<K>) (Total) 0.043893 eV <|dQ/dt|^2> 0.079432 eV Occupation number 7.653201 Fit temperature 920.616703 K Base line 0.000252 eV * ps Maximum height 0.030504 eV * ps Fitting global error 0.031513 Frequency shift -0.436927 THz Q-point: 8 / 32 [ 0.25000 0.75000 0.00000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Peak # 1 ---------------------------------------------- Width 0.522556 THz Position 4.483775 THz Area (<K>) (Lorentzian) 0.037188 eV Area (<K>) (Total) 0.034635 eV <|dQ/dt|^2> 0.074376 eV Occupation number 24.701308 Fit temperature 862.984199 K Base line -0.000079 eV * ps Maximum height 0.045305 eV * ps Fitting global error 0.012393 Frequency shift -0.184104 THz Peak # 2 ---------------------------------------------- Width 0.898262 THz Position 6.707279 THz Area (<K>) (Lorentzian) 0.067887 eV Area (<K>) (Total) 0.079212 eV <|dQ/dt|^2> 0.135775 eV Occupation number 30.254428 Fit temperature 1575.464581 K Base line 0.000635 eV * ps Maximum height 0.048114 eV * ps Fitting global error 0.023773 Frequency shift -0.253812 THz Peak # 3 ---------------------------------------------- Width 0.835420 THz Position 8.803037 THz Area (<K>) (Lorentzian) 0.013150 eV Area (<K>) (Total) 0.016324 eV <|dQ/dt|^2> 0.026301 eV Occupation number 4.039095 Fit temperature 303.968669 K Base line 0.000166 eV * ps Maximum height 0.010021 eV * ps Fitting global error 0.059276 Frequency shift -0.202810 THz Peak # 4 ---------------------------------------------- Width 0.730369 THz Position 13.368389 THz Area (<K>) (Lorentzian) 0.016678 eV Area (<K>) (Total) 0.021238 eV <|dQ/dt|^2> 0.033357 eV Occupation number 3.290872 Fit temperature 384.834117 K Base line 0.000234 eV * ps Maximum height 0.014538 eV * ps Fitting global error 0.045590 Frequency shift -0.356527 THz Peak # 5 ---------------------------------------------- Width 0.674322 THz Position 14.951363 THz Area (<K>) (Lorentzian) 0.036155 eV Area (<K>) (Total) 0.038613 eV <|dQ/dt|^2> 0.072311 eV Occupation number 6.847775 Fit temperature 837.833762 K Base line 0.000157 eV * ps Maximum height 0.034134 eV * ps Fitting global error 0.014619 Frequency shift -0.475083 THz Peak # 6 ---------------------------------------------- Width 0.902049 THz Position 15.073779 THz Area (<K>) (Lorentzian) 0.021209 eV Area (<K>) (Total) 0.022490 eV <|dQ/dt|^2> 0.042418 eV Occupation number 3.775244 Fit temperature 489.986369 K Base line 0.000094 eV * ps Maximum height 0.014968 eV * ps Fitting global error 0.022499 Frequency shift -0.508977 THz Q-point: 9 / 32 [ 0.50000 0.00000 0.50000 ] Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Skipped, equivalent to [0. 0.5 0.5] Q-point: 10 / 32 [ 0.50000 0.25000 0.75000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Skipped, equivalent to [0.25 0.5 0.75] Q-point: 11 / 32 [ 0.50000 0.50000 0.00000 ] Harmonic frequencies (THz): [ 6.89533567 6.89533567 12.19179039 12.19179039 14.89095524 14.89095524] Skipped, equivalent to [0. 0.5 0.5] Q-point: 12 / 32 [ 0.50000 0.75000 0.25000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Skipped, equivalent to [0.25 0.5 0.75] Q-point: 13 / 32 [ 0.75000 0.00000 0.75000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Skipped, equivalent to [0. 0.75 0.75] Q-point: 14 / 32 [ 0.75000 0.25000 0.00000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Peak # 1 ---------------------------------------------- Width 0.521991 THz Position 4.484158 THz Area (<K>) (Lorentzian) 0.036566 eV Area (<K>) (Total) 0.033926 eV <|dQ/dt|^2> 0.073131 eV Occupation number 24.277431 Fit temperature 848.537722 K Base line -0.000083 eV * ps Maximum height 0.044595 eV * ps Fitting global error 0.012530 Frequency shift -0.183721 THz Peak # 2 ---------------------------------------------- Width 0.899617 THz Position 6.704187 THz Area (<K>) (Lorentzian) 0.061915 eV Area (<K>) (Total) 0.071943 eV <|dQ/dt|^2> 0.123830 eV Occupation number 27.561609 Fit temperature 1436.830957 K Base line 0.000565 eV * ps Maximum height 0.043814 eV * ps Fitting global error 0.025259 Frequency shift -0.256903 THz Peak # 3 ---------------------------------------------- Width 0.840794 THz Position 8.777709 THz Area (<K>) (Lorentzian) 0.009473 eV Area (<K>) (Total) 0.011919 eV <|dQ/dt|^2> 0.018945 eV Occupation number 2.779076 Fit temperature 218.134959 K Base line 0.000127 eV * ps Maximum height 0.007172 eV * ps Fitting global error 0.078651 Frequency shift -0.228137 THz Peak # 4 ---------------------------------------------- Width 0.814357 THz Position 13.294667 THz Area (<K>) (Lorentzian) 0.012215 eV Area (<K>) (Total) 0.016240 eV <|dQ/dt|^2> 0.024429 eV Occupation number 2.291679 Fit temperature 280.431129 K Base line 0.000205 eV * ps Maximum height 0.009549 eV * ps Fitting global error 0.061800 Frequency shift -0.430249 THz Peak # 5 ---------------------------------------------- Width 0.706639 THz Position 14.920962 THz Area (<K>) (Lorentzian) 0.033379 eV Area (<K>) (Total) 0.034927 eV <|dQ/dt|^2> 0.066758 eV Occupation number 6.297384 Fit temperature 773.297146 K Base line 0.000113 eV * ps Maximum height 0.030072 eV * ps Fitting global error 0.021423 Frequency shift -0.505484 THz Peak # 6 ---------------------------------------------- Width 0.901748 THz Position 15.110122 THz Area (<K>) (Lorentzian) 0.021178 eV Area (<K>) (Total) 0.023049 eV <|dQ/dt|^2> 0.042356 eV Occupation number 3.758704 Fit temperature 489.249960 K Base line 0.000121 eV * ps Maximum height 0.014951 eV * ps Fitting global error 0.028888 Frequency shift -0.472634 THz Q-point: 15 / 32 [ 0.75000 0.50000 0.25000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Skipped, equivalent to [0.25 0.5 0.75] Q-point: 16 / 32 [ 0.75000 0.75000 0.50000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Peak # 1 ---------------------------------------------- Width 0.521626 THz Position 4.484270 THz Area (<K>) (Lorentzian) 0.040369 eV Area (<K>) (Total) 0.037483 eV <|dQ/dt|^2> 0.080738 eV Occupation number 26.853838 Fit temperature 936.816651 K Base line -0.000091 eV * ps Maximum height 0.049268 eV * ps Fitting global error 0.011912 Frequency shift -0.183609 THz Peak # 2 ---------------------------------------------- Width 0.898998 THz Position 6.706088 THz Area (<K>) (Lorentzian) 0.060155 eV Area (<K>) (Total) 0.069989 eV <|dQ/dt|^2> 0.120310 eV Occupation number 26.756362 Fit temperature 1395.986799 K Base line 0.000553 eV * ps Maximum height 0.042598 eV * ps Fitting global error 0.025425 Frequency shift -0.255003 THz Peak # 3 ---------------------------------------------- Width 0.847729 THz Position 8.762397 THz Area (<K>) (Lorentzian) 0.009423 eV Area (<K>) (Total) 0.011871 eV <|dQ/dt|^2> 0.018846 eV Occupation number 2.767683 Fit temperature 216.985862 K Base line 0.000127 eV * ps Maximum height 0.007077 eV * ps Fitting global error 0.078128 Frequency shift -0.243450 THz Peak # 4 ---------------------------------------------- Width 0.822505 THz Position 13.296042 THz Area (<K>) (Lorentzian) 0.012441 eV Area (<K>) (Total) 0.016789 eV <|dQ/dt|^2> 0.024882 eV Occupation number 2.343156 Fit temperature 285.744350 K Base line 0.000221 eV * ps Maximum height 0.009629 eV * ps Fitting global error 0.060141 Frequency shift -0.428874 THz Peak # 5 ---------------------------------------------- Width 0.692941 THz Position 14.927237 THz Area (<K>) (Lorentzian) 0.037140 eV Area (<K>) (Total) 0.038953 eV <|dQ/dt|^2> 0.074280 eV Occupation number 7.060040 Fit temperature 860.720270 K Base line 0.000129 eV * ps Maximum height 0.034121 eV * ps Fitting global error 0.019502 Frequency shift -0.499209 THz Peak # 6 ---------------------------------------------- Width 0.873800 THz Position 15.089642 THz Area (<K>) (Lorentzian) 0.020289 eV Area (<K>) (Total) 0.022192 eV <|dQ/dt|^2> 0.040578 eV Occupation number 3.585462 Fit temperature 468.522604 K Base line 0.000120 eV * ps Maximum height 0.014782 eV * ps Fitting global error 0.026540 Frequency shift -0.493114 THz Q-point: 17 / 32 [ 0.25000 0.25000 0.00000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Skipped, equivalent to [0.25 0. 0.25] Q-point: 18 / 32 [ 0.25000 0.50000 0.25000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.25 0.25 0.5 ] Q-point: 19 / 32 [ 0.25000 0.75000 0.50000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Skipped, equivalent to [0.25 0.5 0.75] Q-point: 20 / 32 [ 0.25000 0.00000 0.75000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.75 0.75 0.5 ] Q-point: 21 / 32 [ 0.50000 0.25000 0.25000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.25 0.5 0.25] Q-point: 22 / 32 [ 0.50000 0.50000 0.50000 ] Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Calculating phonon projection power spectra Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Projecting into phonon mode Projecting into wave vector Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Power spectrum resolution requested unavailable, using maximum: 0.500000 THz If you need higher resolution increase the number of data FFT: [##############################] 100.00% Done... Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Peak # 1 ---------------------------------------------- Width 0.531374 THz Position 4.473540 THz Area (<K>) (Lorentzian) 0.029343 eV Area (<K>) (Total) 0.027597 eV <|dQ/dt|^2> 0.058686 eV Occupation number 19.430578 Fit temperature 680.883835 K Base line -0.000049 eV * ps Maximum height 0.035155 eV * ps Fitting global error 0.015967 Frequency shift -0.194339 THz Peak # 2 ---------------------------------------------- Width 0.531374 THz Position 4.473540 THz Area (<K>) (Lorentzian) 0.029343 eV Area (<K>) (Total) 0.027597 eV <|dQ/dt|^2> 0.058686 eV Occupation number 19.430578 Fit temperature 680.883835 K Base line -0.000049 eV * ps Maximum height 0.035155 eV * ps Fitting global error 0.015967 Frequency shift -0.194339 THz Peak # 3 ---------------------------------------------- Width 0.538267 THz Position 10.993312 THz Area (<K>) (Lorentzian) 0.062518 eV Area (<K>) (Total) 0.058145 eV <|dQ/dt|^2> 0.125036 eV Occupation number 16.779904 Fit temperature 1450.579488 K Base line -0.000158 eV * ps Maximum height 0.073941 eV * ps Fitting global error 0.008088 Frequency shift -0.317902 THz Peak # 4 ---------------------------------------------- Width 0.776728 THz Position 12.855329 THz Area (<K>) (Lorentzian) 0.017087 eV Area (<K>) (Total) 0.019549 eV <|dQ/dt|^2> 0.034174 eV Occupation number 3.538695 Fit temperature 394.533163 K Base line 0.000136 eV * ps Maximum height 0.014005 eV * ps Fitting global error 0.044153 Frequency shift -0.299509 THz Peak # 5 ---------------------------------------------- Width 0.629022 THz Position 14.951429 THz Area (<K>) (Lorentzian) 0.062984 eV Area (<K>) (Total) 0.068437 eV <|dQ/dt|^2> 0.125967 eV Occupation number 12.300000 Fit temperature 1461.048221 K Base line 0.000325 eV * ps Maximum height 0.063744 eV * ps Fitting global error 0.012067 Frequency shift -0.475017 THz Peak # 6 ---------------------------------------------- Width 0.629022 THz Position 14.951429 THz Area (<K>) (Lorentzian) 0.062984 eV Area (<K>) (Total) 0.068437 eV <|dQ/dt|^2> 0.125967 eV Occupation number 12.300000 Fit temperature 1461.048221 K Base line 0.000325 eV * ps Maximum height 0.063744 eV * ps Fitting global error 0.012067 Frequency shift -0.475017 THz Q-point: 23 / 32 [ 0.50000 0.75000 0.75000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.25 0. 0.75] Q-point: 24 / 32 [ 0.50000 0.00000 0.00000 ] Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Skipped, equivalent to [0.5 0.5 0.5] Q-point: 25 / 32 [ 0.75000 0.25000 0.50000 ] Harmonic frequencies (THz): [ 7.54249562 7.54249562 11.3503204 11.3503204 15.23833788 15.23833788] Skipped, equivalent to [0.25 0.5 0.75] Q-point: 26 / 32 [ 0.75000 0.50000 0.75000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.25 0. 0.75] Q-point: 27 / 32 [ 0.75000 0.75000 0.00000 ] Harmonic frequencies (THz): [ 4.66397327 4.66397327 6.89816884 15.17048811 15.55567884 15.55567884] Skipped, equivalent to [0. 0.75 0.75] Q-point: 28 / 32 [ 0.75000 0.00000 0.25000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.75 0.5 0.75] Q-point: 29 / 32 [ 0.00000 0.25000 0.75000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.75 0.5 0.75] Q-point: 30 / 32 [ 0.00000 0.50000 0.00000 ] Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Skipped, equivalent to [0.5 0.5 0.5] Q-point: 31 / 32 [ 0.00000 0.75000 0.25000 ] Harmonic frequencies (THz): [ 4.66787904 6.96109048 9.00584683 13.72491589 15.42644585 15.58275543] Skipped, equivalent to [0.75 0.5 0.75] Q-point: 32 / 32 [ 0.00000 0.00000 0.50000 ] Harmonic frequencies (THz): [ 4.66787904 4.66787904 11.31121369 13.15483786 15.42644585 15.42644585] Skipped, equivalent to [0.5 0.5 0.5]
array([[[[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]], [[-8.53720262e-03, 7.27856464e-04, -8.95058148e-04], [ 7.27856464e-04, 7.22093450e-03, 8.95058148e-04], [-8.95058148e-04, 8.95058148e-04, 8.58955541e-03]], [[ 7.22093450e-03, 7.27856464e-04, 8.95058148e-04], [ 7.27856464e-04, -8.53720262e-03, -8.95058148e-04], [ 8.95058148e-04, -8.95058148e-04, 8.58955541e-03]], ..., [[-4.44967060e-03, 1.03899911e-04, -2.92254418e-03], [ 1.03899911e-04, 3.86955298e-03, 9.18164273e-03], [-2.92254418e-03, 9.18164273e-03, 2.64253878e-03]], [[ 3.86955298e-03, 1.03899911e-04, 9.18164273e-03], [ 1.03899911e-04, -4.44967060e-03, -2.92254418e-03], [ 9.18164273e-03, -2.92254418e-03, 2.64253878e-03]], [[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]]], [[[-8.53720262e-03, 7.27856464e-04, -8.95058148e-04], [ 7.27856464e-04, 7.22093450e-03, 8.95058148e-04], [-8.95058148e-04, 8.95058148e-04, 8.58955541e-03]], [[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]], [[ 5.72248779e-03, -7.27856464e-04, -8.95058148e-04], [-7.27856464e-04, 5.72248779e-03, -8.95058148e-04], [-8.95058148e-04, -8.95058148e-04, 1.30276827e-02]], ..., [[-3.48139117e+00, -2.36186546e+00, 2.36468410e+00], [-2.36186546e+00, -3.48139117e+00, 2.36468410e+00], [ 2.36468410e+00, 2.36468410e+00, -3.48016416e+00]], [[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]], [[ 3.86955298e-03, 1.03899911e-04, 9.18164273e-03], [ 1.03899911e-04, -4.44967060e-03, -2.92254418e-03], [ 9.18164273e-03, -2.92254418e-03, 2.64253878e-03]]], [[[ 7.22093450e-03, 7.27856464e-04, 8.95058148e-04], [ 7.27856464e-04, -8.53720262e-03, -8.95058148e-04], [ 8.95058148e-04, -8.95058148e-04, 8.58955541e-03]], [[ 5.72248779e-03, -7.27856464e-04, -8.95058148e-04], [-7.27856464e-04, 5.72248779e-03, -8.95058148e-04], [-8.95058148e-04, -8.95058148e-04, 1.30276827e-02]], [[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]], ..., [[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]], [[-3.48139117e+00, -2.36186546e+00, 2.36468410e+00], [-2.36186546e+00, -3.48139117e+00, 2.36468410e+00], [ 2.36468410e+00, 2.36468410e+00, -3.48016416e+00]], [[-4.44967060e-03, 1.03899911e-04, -2.92254418e-03], [ 1.03899911e-04, 3.86955298e-03, 9.18164273e-03], [-2.92254418e-03, 9.18164273e-03, 2.64253878e-03]]], ..., [[[-4.44967060e-03, 1.03899911e-04, -2.92254418e-03], [ 1.03899911e-04, 3.86955298e-03, 9.18164273e-03], [-2.92254418e-03, 9.18164273e-03, 2.64253878e-03]], [[-3.48139117e+00, -2.36186546e+00, 2.36468410e+00], [-2.36186546e+00, -3.48139117e+00, 2.36468410e+00], [ 2.36468410e+00, 2.36468410e+00, -3.48016416e+00]], [[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]], ..., [[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]], [[ 5.72248779e-03, -7.27856464e-04, -8.95058148e-04], [-7.27856464e-04, 5.72248779e-03, -8.95058148e-04], [-8.95058148e-04, -8.95058148e-04, 1.30276827e-02]], [[ 7.22093450e-03, 7.27856464e-04, 8.95058148e-04], [ 7.27856464e-04, -8.53720262e-03, -8.95058148e-04], [ 8.95058148e-04, -8.95058148e-04, 8.58955541e-03]]], [[[ 3.86955298e-03, 1.03899911e-04, 9.18164273e-03], [ 1.03899911e-04, -4.44967060e-03, -2.92254418e-03], [ 9.18164273e-03, -2.92254418e-03, 2.64253878e-03]], [[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]], [[-3.48139117e+00, -2.36186546e+00, 2.36468410e+00], [-2.36186546e+00, -3.48139117e+00, 2.36468410e+00], [ 2.36468410e+00, 2.36468410e+00, -3.48016416e+00]], ..., [[ 5.72248779e-03, -7.27856464e-04, -8.95058148e-04], [-7.27856464e-04, 5.72248779e-03, -8.95058148e-04], [-8.95058148e-04, -8.95058148e-04, 1.30276827e-02]], [[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]], [[-8.53720262e-03, 7.27856464e-04, -8.95058148e-04], [ 7.27856464e-04, 7.22093450e-03, 8.95058148e-04], [-8.95058148e-04, 8.95058148e-04, 8.58955541e-03]]], [[[ 4.35320043e-03, -8.69200588e-04, 7.43830393e-03], [-8.69200588e-04, 4.35320043e-03, 7.43830393e-03], [ 7.43830393e-03, 7.43830393e-03, 1.98168743e-03]], [[ 3.86955298e-03, 1.03899911e-04, 9.18164273e-03], [ 1.03899911e-04, -4.44967060e-03, -2.92254418e-03], [ 9.18164273e-03, -2.92254418e-03, 2.64253878e-03]], [[-4.44967060e-03, 1.03899911e-04, -2.92254418e-03], [ 1.03899911e-04, 3.86955298e-03, 9.18164273e-03], [-2.92254418e-03, 9.18164273e-03, 2.64253878e-03]], ..., [[ 7.22093450e-03, 7.27856464e-04, 8.95058148e-04], [ 7.27856464e-04, -8.53720262e-03, -8.95058148e-04], [ 8.95058148e-04, -8.95058148e-04, 8.58955541e-03]], [[-8.53720262e-03, 7.27856464e-04, -8.95058148e-04], [ 7.27856464e-04, 7.22093450e-03, 8.95058148e-04], [-8.95058148e-04, 8.95058148e-04, 8.58955541e-03]], [[ 1.47903370e+01, -7.27856464e-04, 8.95058148e-04], [-7.27856464e-04, 1.47903370e+01, 8.95058148e-04], [ 8.95058148e-04, 8.95058148e-04, 1.47889684e+01]]]])
It calculates the re-normalized force constants which can then be used to calculate the finite temperature properties.
In addition the DynaPhoPy package can be used to directly compare the finite temperature phonon spectrum with the 0K phonon spectrum calulated with the finite displacement method:
calculation.plot_renormalized_phonon_dispersion_bands()
In addition to the molecular dynamics implemented in the LAMMPS simulation code, the atomistics
package also provides
the LangevinWorkflow
which implements molecular dynamics independent of the specific simulation code.
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib_library_interface, get_potential_by_name
from atomistics.workflows import LangevinWorkflow
from pylammpsmpi import LammpsASELibrary
steps = 300
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
workflow = LangevinWorkflow(
structure=bulk("Al", cubic=True).repeat([2, 2, 2]),
temperature=1000.0,
overheat_fraction=2.0,
damping_timescale=100.0,
time_step=1,
)
lmp = LammpsASELibrary(
working_directory=None,
cores=1,
comm=None,
logger=None,
log_file=None,
library=None,
disable_log_file=True,
)
eng_pot_lst, eng_kin_lst = [], []
for i in range(steps):
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib_library_interface(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
lmp=lmp,
)
eng_pot, eng_kin = workflow.analyse_structures(output_dict=result_dict)
eng_pot_lst.append(eng_pot)
eng_kin_lst.append(eng_kin)
lmp.close()
The advantage of this implementation is that the user can directly interact with the simulation between the individual
molecular dynamics simulation steps. This provides a lot of flexibility to prototype new simulation methods. The input
parameters of the LangevinWorkflow
are:
structure
the ase.atoms.Atoms
object which is used as initial structure for the molecular dynamics calculationtemperature
the temperature of the molecular dynamics calculation given in Kelvinoverheat_fraction
the over heating fraction of the Langevin thermostatdamping_timescale
the damping timescale of the Langevin thermostattime_step
the time steps of the Langevin thermostatTo calculate the phonons at a fixed volume the PhonopyWorkflow
is used:
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import PhonopyWorkflow
from phonopy.units import VaspToTHz
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
workflow = PhonopyWorkflow(
structure=bulk("Al", cubic=True),
interaction_range=10,
factor=VaspToTHz,
displacement=0.01,
dos_mesh=20,
primitive_matrix=None,
number_of_snapshots=None,
)
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
phonopy_dict = workflow.analyse_structures(output_dict=result_dict)
The PhonopyWorkflow
takes the following inputs:
structure
the ase.atoms.Atoms
object to calculate the phonon spectruminteraction_range
the cutoff radius to consider for identifying the interaction between the atomsfactor
conversion factor, typically just phonopy.units.VaspToTHz
displacement
displacement to calculate the forcesdos_mesh
mesh for the density of statesprimitive_matrix
primitive matrixnumber_of_snapshots
number of snapshots to calculateIn addition to the phonon properties, the PhonopyWorkflow
also enables the calculation of thermal properties:
tp_dict = workflow.get_thermal_properties(
t_min=1,
t_max=1500,
t_step=50,
temperatures=None,
cutoff_frequency=None,
pretend_real=False,
band_indices=None,
is_projection=False,
)
print(tp_dict)
{'temperatures': array([1.000e+00, 5.100e+01, 1.010e+02, 1.510e+02, 2.010e+02, 2.510e+02, 3.010e+02, 3.510e+02, 4.010e+02, 4.510e+02, 5.010e+02, 5.510e+02, 6.010e+02, 6.510e+02, 7.010e+02, 7.510e+02, 8.010e+02, 8.510e+02, 9.010e+02, 9.510e+02, 1.001e+03, 1.051e+03, 1.101e+03, 1.151e+03, 1.201e+03, 1.251e+03, 1.301e+03, 1.351e+03, 1.401e+03, 1.451e+03, 1.501e+03]), 'volumes': array([66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125, 66.430125]), 'free_energy': array([ 0.14914132, 0.14837894, 0.13954171, 0.11738723, 0.08264779, 0.03712237, -0.01759836, -0.08025513, -0.14986079, -0.22563203, -0.30693668, -0.39325592, -0.48415731, -0.57927552, -0.67829812, -0.78095507, -0.88701079, -0.99625805, -1.10851315, -1.22361223, -1.3414082 , -1.46176834, -1.58457228, -1.70971039, -1.8370824 , -1.96659625, -2.09816715, -2.23171671, -2.3671723 , -2.5044664 , -2.64353611]), 'entropy': array([1.10364016e-08, 5.98829810e+00, 2.96478195e+01, 5.54593816e+01, 7.80099308e+01, 9.71787932e+01, 1.13608521e+02, 1.27894607e+02, 1.40492150e+02, 1.51738264e+02, 1.61883985e+02, 1.71119149e+02, 1.79589851e+02, 1.87410480e+02, 1.94672040e+02, 2.01447985e+02, 2.07798389e+02, 2.13772961e+02, 2.19413270e+02, 2.24754417e+02, 2.29826293e+02, 2.34654555e+02, 2.39261386e+02, 2.43666089e+02, 2.47885561e+02, 2.51934678e+02, 2.55826598e+02, 2.59573021e+02, 2.63184393e+02, 2.66670075e+02, 2.70038493e+02]), 'heat_capacity': array([1.78544597e-07, 1.73410821e+01, 5.37349237e+01, 7.35976295e+01, 8.34733324e+01, 8.87978444e+01, 9.19287453e+01, 9.39060819e+01, 9.52277477e+01, 9.61520364e+01, 9.68225162e+01, 9.73237288e+01, 9.77079209e+01, 9.80087218e+01, 9.82485402e+01, 9.84427587e+01, 9.86022130e+01, 9.87347097e+01, 9.88459861e+01, 9.89403338e+01, 9.90210141e+01, 9.90905402e+01, 9.91508741e+01, 9.92035655e+01, 9.92498509e+01, 9.92907269e+01, 9.93270039e+01, 9.93593459e+01, 9.93883017e+01, 9.94143276e+01, 9.94378055e+01])}
The calculation of the thermal properties takes additional inputs:
t_min
minimum temperaturet_max
maximum temperaturet_step
temperature steptemperatures
alternative to t_min
, t_max
and t_step
the array of temperatures can be defined directlycutoff_frequency
cutoff frequency to exclude the contributions of frequencies below a certain cut offpretend_real
use the absolute values of the phonon frequenciesband_indices
select bands based on their indicesis_projection
multiplies the squared eigenvectors - not recommendedFurthermore, also the dynamical matrix can be directly calculated with the PhonopyWorkflow
:
mat = workflow.get_dynamical_matrix()
mat
array([[ 1.72794621e-01, 6.42929783e-20, -6.22838227e-20, -1.55150365e-18, 1.42759084e-35, -1.50515236e-19, 4.11475061e-18, 4.82197337e-20, 9.98736570e-02, 8.87128656e-18, -1.02675017e-33, -1.50493730e-19], [ 6.42929783e-20, 1.40379905e-01, 6.83112895e-20, 2.05216191e-35, 8.80589092e-18, 1.94854949e-33, 1.60732446e-20, 1.02868765e-18, -1.60732446e-20, -1.10192213e-34, 8.80589092e-18, 2.23061078e-36], [-6.22838227e-20, 6.83112895e-20, 1.72794621e-01, -1.50493730e-19, 1.25694783e-34, 8.87128656e-18, 9.98736570e-02, 3.21464892e-20, 0.00000000e+00, -1.50515236e-19, 1.47219713e-35, -1.55150365e-18], [-1.55150365e-18, 2.05216191e-35, -1.50493730e-19, 1.72794621e-01, -6.63021339e-20, 6.42929783e-20, 8.87128656e-18, -1.03065371e-33, -1.50493730e-19, 1.85163778e-17, 8.03662229e-20, 9.98736570e-02], [ 1.42759084e-35, 8.80589092e-18, 1.25694783e-34, -6.63021339e-20, 1.40379905e-01, 6.42929783e-20, -2.28392231e-33, 8.80589092e-18, 2.67635707e-36, 0.00000000e+00, 0.00000000e+00, -1.60732446e-20], [-1.50515236e-19, 1.94854949e-33, 8.87128656e-18, 6.42929783e-20, 6.42929783e-20, 1.72794621e-01, -1.50515236e-19, -4.46122155e-37, -1.55150365e-18, 9.98736570e-02, 0.00000000e+00, -1.85163778e-17], [ 4.11475061e-18, 1.60732446e-20, 9.98736570e-02, 8.87128656e-18, -2.28392231e-33, -1.50515236e-19, 1.72794621e-01, 6.63021339e-20, -6.42929783e-20, -1.55150365e-18, 6.24500783e-36, -1.50493730e-19], [ 4.82197337e-20, 1.02868765e-18, 3.21464892e-20, -1.03065371e-33, 8.80589092e-18, -4.46122155e-37, 6.63021339e-20, 1.40379905e-01, 6.83112895e-20, 1.07069317e-35, 8.80589092e-18, -6.89481791e-34], [ 9.98736570e-02, -1.60732446e-20, 0.00000000e+00, -1.50493730e-19, 2.67635707e-36, -1.55150365e-18, -6.42929783e-20, 6.83112895e-20, 1.72794621e-01, -1.50515236e-19, 1.81950725e-33, 8.87128656e-18], [ 8.87128656e-18, -1.10192213e-34, -1.50515236e-19, 1.85163778e-17, 0.00000000e+00, 9.98736570e-02, -1.55150365e-18, 1.07069317e-35, -1.50515236e-19, 1.72794621e-01, 6.42929783e-20, -6.22838227e-20], [-1.02675017e-33, 8.80589092e-18, 1.47219713e-35, 8.03662229e-20, 0.00000000e+00, 0.00000000e+00, 6.24500783e-36, 8.80589092e-18, 1.81950725e-33, 6.42929783e-20, 1.40379905e-01, 6.83112895e-20], [-1.50493730e-19, 2.23061078e-36, -1.55150365e-18, 9.98736570e-02, -1.60732446e-20, -1.85163778e-17, -1.50493730e-19, -6.89481791e-34, 8.87128656e-18, -6.22838227e-20, 6.83112895e-20, 1.72794621e-01]])
Or alternatively the hesse matrix:
mat = workflow.get_hesse_matrix()
mat
array([[ 4.50127147e-02, -1.92714960e-33, 8.52306995e-33, ..., -6.63514216e-05, 8.82979633e-06, 5.93920137e-05], [-5.07378488e-34, 4.50127147e-02, 5.07378488e-34, ..., 8.82979633e-06, -6.63514216e-05, 5.93920137e-05], [ 5.07378488e-34, -5.07378488e-34, 4.50127147e-02, ..., 5.93659141e-05, 5.93659141e-05, 1.73512126e-05], ..., [-6.63514216e-05, 8.82979633e-06, 5.93920137e-05, ..., 4.50127147e-02, -1.92714960e-33, 8.52306995e-33], [ 8.82979633e-06, -6.63514216e-05, 5.93920137e-05, ..., -5.07378488e-34, 4.50127147e-02, 5.07378488e-34], [ 5.93659141e-05, 5.93659141e-05, 1.73512126e-05, ..., 5.07378488e-34, -5.07378488e-34, 4.50127147e-02]])
Finally, also the function to calculate the band structure is directly available on the PhonopyWorkflow
:
band_structure = workflow.get_band_structure(
npoints=101, with_eigenvectors=False, with_group_velocities=False
)
This band structure can also be visualised using the built-in plotting function:
workflow.plot_band_structure()
<Axes: title={'center': 'Bandstructure'}, xlabel='Bandpath', ylabel='Frequency [THz]'>
Just like the desnsity of states which can be plotted using:
workflow.plot_dos()
<Axes: title={'center': 'Phonon DOS vs Energy'}, xlabel='Frequency [THz]', ylabel='DOS'>
To include the volume expansion with finite temperature the atomistics
package implements the QuasiHarmonicWorkflow
:
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import QuasiHarmonicWorkflow
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
workflow = QuasiHarmonicWorkflow(
structure=bulk("Al", cubic=True),
num_points=11,
vol_range=0.05,
interaction_range=10,
factor=VaspToTHz,
displacement=0.01,
dos_mesh=20,
primitive_matrix=None,
number_of_snapshots=None,
)
task_dict = workflow.generate_structures()
result_dict = evaluate_with_lammpslib(
task_dict=task_dict,
potential_dataframe=potential_dataframe,
)
fit_dict = workflow.analyse_structures(output_dict=result_dict)
The QuasiHarmonicWorkflow
is a combination of the EnergyVolumeCurveWorkflow
and the PhonopyWorkflow
. Consequently,
the inputs are a superset of the inputs of these two workflows.
Based on the QuasiHarmonicWorkflow
the thermal properties can be calculated:
tp_dict = workflow.get_thermal_properties(
t_min=1,
t_max=1500,
t_step=50,
temperatures=None,
cutoff_frequency=None,
pretend_real=False,
band_indices=None,
is_projection=False,
quantum_mechanical=True,
)
print(tp_dict)
{'temperatures': array([1.000e+00, 5.100e+01, 1.010e+02, 1.510e+02, 2.010e+02, 2.510e+02, 3.010e+02, 3.510e+02, 4.010e+02, 4.510e+02, 5.010e+02, 5.510e+02, 6.010e+02, 6.510e+02, 7.010e+02, 7.510e+02, 8.010e+02, 8.510e+02, 9.010e+02, 9.510e+02, 1.001e+03, 1.051e+03, 1.101e+03, 1.151e+03, 1.201e+03, 1.251e+03, 1.301e+03, 1.351e+03, 1.401e+03, 1.451e+03, 1.501e+03]), 'volumes': [66.71710763927429, 66.7217721669909, 66.7588030456557, 66.82252047263532, 66.89849494958942, 66.9796340113892, 67.06260790999332, 67.14571406293086, 67.22800412575396, 67.30891433769602, 67.38809533263267, 67.46532691223801, 67.54047194450261, 67.61344961442688, 67.68421888050003, 67.7527676376025, 67.81910525012583, 67.88325718224746, 67.94526099996934, 68.00516331349996, 68.06301739227649, 68.11888127927111, 68.1728162874363, 68.22488579579438, 68.27515428480372, 68.32368656530063, 68.3705471654382, 68.41579984727981, 68.45950723009813, 68.50173050155158, 68.54252920118272], 'free_energy': array([ 0.14903662, 0.14826796, 0.13934608, 0.1169922 , 0.08193524, 0.03597463, -0.01929655, -0.08261538, -0.15299036, -0.22963345, -0.31190757, -0.39928889, -0.49134004, -0.5876908 , -0.68802399, -0.79206502, -0.89957393, -1.01033927, -1.12417341, -1.24090869, -1.36039449, -1.48249475, -1.60708597, -1.73405557, -1.86330055, -1.99472628, -2.12824554, -2.26377775, -2.40124816, -2.54058732, -2.6817305 ]), 'entropy': array([1.02970750e-08, 5.98072651e+00, 2.96865053e+01, 5.55852668e+01, 7.82409727e+01, 9.75218995e+01, 1.14065625e+02, 1.28465273e+02, 1.41174728e+02, 1.52530436e+02, 1.62783056e+02, 1.72122199e+02, 1.80693841e+02, 1.88612312e+02, 1.95968600e+02, 2.02836175e+02, 2.09275150e+02, 2.15335286e+02, 2.21058222e+02, 2.26479132e+02, 2.31627991e+02, 2.36530543e+02, 2.41209060e+02, 2.45682935e+02, 2.49969156e+02, 2.54082691e+02, 2.58036788e+02, 2.61843234e+02, 2.65512561e+02, 2.69054215e+02, 2.72476702e+02]), 'heat_capacity': array([1.67065980e-07, 1.73540235e+01, 5.38037700e+01, 7.36871465e+01, 8.35644372e+01, 8.88841670e+01, 9.20085315e+01, 9.39792227e+01, 9.52946945e+01, 9.62133951e+01, 9.68788951e+01, 9.73756862e+01, 9.77559504e+01, 9.80532534e+01, 9.82899463e+01, 9.84813619e+01, 9.86382931e+01, 9.87685101e+01, 9.88777197e+01, 9.89701872e+01, 9.90491516e+01, 9.91171073e+01, 9.91760000e+01, 9.92273651e+01, 9.92724273e+01, 9.93121724e+01, 9.93474017e+01, 9.93787712e+01, 9.94068224e+01, 9.94320054e+01, 9.94546967e+01])}
This requires the same inputs as the calculation of the thermal properties get_thermal_properties()
with the
PhonopyWorkflow
. The additional parameter quantum_mechanical
specifies whether the classical harmonic oscillator or
the quantum mechanical harmonic oscillator is used to calculate the free energy.
And finally also the thermal expansion can be calculated:
tp_dict = workflow.get_thermal_properties(
t_min=1,
t_max=1500,
t_step=50,
temperatures=None,
cutoff_frequency=None,
pretend_real=False,
band_indices=None,
is_projection=False,
quantum_mechanical=True,
output_keys=["free_energy", "temperatures", "volumes"],
)
temperatures, volumes = tp_dict["temperatures"], tp_dict["volumes"]
In analogy to the molecular dynamics calculation also the structure optimization could in principle be defined inside
the simulation code or on the python level. Still currently the atomistics
package only supports the structure
optimization defined inside the simulation codes.
To optimize both the volume of the supercell as well as the positions inside the supercell the atomistics
package
implements the optimize_positions_and_volume()
workflow:
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import optimize_positions_and_volume
structure = bulk("Al", a=4.0, cubic=True)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = evaluate_with_lammpslib(
task_dict=optimize_positions_and_volume(structure=structure),
potential_dataframe=potential_dataframe,
)
structure_opt = result_dict["structure_with_optimized_positions_and_volume"]
structure_opt
Atoms(symbols='Al4', pbc=True, cell=[[4.05000466219724, 2.4799126230458533e-16, 2.4799126230458533e-16], [0.0, 4.05000466219724, 2.4799126230458533e-16], [0.0, 0.0, 4.05000466219724]])
The result is the optimized atomistic structure as part of the result dictionary.
The optimization of the positions inside the supercell without the optimization of the supercell volume is possible with
the optimize_positions()
workflow:
from ase.build import bulk
from atomistics.calculators import evaluate_with_lammpslib, get_potential_by_name
from atomistics.workflows import optimize_positions
structure = bulk("Al", a=4.0, cubic=True)
potential_dataframe = get_potential_by_name(
potential_name="1999--Mishin-Y--Al--LAMMPS--ipr1", resource_path="static/lammps"
)
result_dict = evaluate_with_lammpslib(
task_dict=optimize_positions(structure=structure),
potential_dataframe=potential_dataframe,
)
structure_opt = result_dict["structure_with_optimized_positions"]
structure_opt
Atoms(symbols='Al4', pbc=True, cell=[4.0, 4.0, 4.0])
The result is the optimized atomistic structure as part of the result dictionary.