This is my init script part:
.
.
.
.
.
runtime_parameters = runtimeParameters(
verbosity_level = 10,
checkpoint_filename = 'twoprobe.nc'
)
# Perform self-consistent field calculation
scf = executeSelfConsistentCalculation(
twoprobe_configuration,
two_probe_method,
runtime_parameters = runtime_parameters,
initial_calculation = scf
)
.
.
.
.
.
my input file for restart calcilation is just like this:
.
.
.
.
.
runtime_parameters = runtimeParameters(
verbosity_level = 10,
checkpoint_filename = 'newtwoprobe.nc'
)
scf = restoreSelfConsistentCalculation("twoprobe.nc")
# Perform self-consistent field calculation
scf = executeSelfConsistentCalculation(
twoprobe_configuration,
two_probe_method,
runtime_parameters = runtime_parameters,
initial_calculation = scf
)
.
.
.
.
.