You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(f'RMSE of the free energy profile for alchemical range {i} (states {REXEE.state_ranges[i][0]} to {REXEE.state_ranges[i][-1]}): {rmse_list[i]:.2f} kT') # noqa: E501
502
501
503
502
# 4-3. Recalculate the free energy profile if subsampling_avg is True
504
503
ifREXEE.subsampling_avgisTrue:
505
504
print('\nUsing averaged start index of the equilibrated data and the avearged statistic inefficiency to re-perform free energy calculations ...') # noqa: E501
506
-
t_avg=int(np.mean(t_idx_list)) +1# Using the ceiling function to be a little more conservative
505
+
t_avg=int(np.mean(t_idx_list)) +1# Using the ceiling function to be a little more conservative # noqa: E501
507
506
g_avg=np.array(g_list).prod() ** (1/len(g_list)) # geometric mean
print(f'RMSE of the free energy profile for alchemical range {i} (states {REXEE.state_ranges[i][0]} to {REXEE.state_ranges[i][-1]}): {rmse_list[i]:.2f} kT') # noqa: E501
0 commit comments