Dear developers,
Is it possible to restore the sscha.Relax.SSCHA object from the data saved during the relaxation?
I have run the sscha relaxation in the jupyter notebook for 1 month (with remote cluster). However, when the relaxation have finished (or not finished, I'm not sure), the sscha.Relax.SSCHA object was gone from memory. I would like to restore it to look on the results of relaxation and check if it was converged.
The part of the script with defining the sscha.Relax.SSCHA object is following:
relax = sscha.Relax.SSCHA(minim,
ase_calculator = espresso_calc,
N_configs = N_CONFIGS,
max_pop = MAX_ITERATIONS,
save_ensemble = True,
cluster =my_hpc)
ioinfo = sscha.Utilities.IOInfo()
ioinfo.SetupSaving("minim_info")
relax.setup_custom_functions(custom_function_post = ioinfo.CFP_SaveAll)
relax.vc_relax(target_press = 170, static_bulk_modulus = 150, restart_from_ens = True, ensemble_loc = "ensembles")
Dear developers,
Is it possible to restore the sscha.Relax.SSCHA object from the data saved during the relaxation?
I have run the sscha relaxation in the jupyter notebook for 1 month (with remote cluster). However, when the relaxation have finished (or not finished, I'm not sure), the sscha.Relax.SSCHA object was gone from memory. I would like to restore it to look on the results of relaxation and check if it was converged.
The part of the script with defining the sscha.Relax.SSCHA object is following:
relax = sscha.Relax.SSCHA(minim,
ase_calculator = espresso_calc,
N_configs = N_CONFIGS,
max_pop = MAX_ITERATIONS,
save_ensemble = True,
cluster =my_hpc)
ioinfo = sscha.Utilities.IOInfo()
ioinfo.SetupSaving("minim_info")
relax.setup_custom_functions(custom_function_post = ioinfo.CFP_SaveAll)
relax.vc_relax(target_press = 170, static_bulk_modulus = 150, restart_from_ens = True, ensemble_loc = "ensembles")