Dear Jenny.
The tutorial does not say, but you need to manually add a few lines in the script if using ATK 13.8.
You can see below how I have defined parameters for the dynamical matrix calculation. Those parameters should be passed on to the calculator:
# -------------------------------------------------------------
# Calculator
# -------------------------------------------------------------
dynamical_matrix_parameters = DynamicalMatrixParameters(
atomic_displacement=0.01*Angstrom,
repeats=Automatic,
acoustic_sum_rule=False,
symmetrize=True,
)
calculator = TersoffCalculator(parameters=Tersoff_C_2010(),
dynamical_matrix_parameters=dynamical_matrix_parameters,
)
########################
Then your calculation should work.