Tutorial on the usage of hydration ================================== This tutorial will show how to use the hydration class to compute the solvation of polymers that belong to the same micelle. Before starting any analysis, load the neccesary modules for this class. .. code:: ipython3 from pysoftk.pol_analysis.tools.utils_mda import MDA_input from pysoftk.pol_analysis.tools.utils_tools import * from pysoftk.pol_analysis.clustering import SCP from pysoftk.pol_analysis.make_micelle_whole import micelle_whole from pysoftk.pol_analysis.solvation import solvation import numpy as np import pandas as pd 1. First load the trajectory, we are going to use the cyclic topology used in previous tutorials. .. code:: ipython3 topology='data/cyclic_water_short_trajectory.tpr' trajectory='data/cyclic_water_short_trajectory.xtc' 2. Import the clustering data from SCP function, to obtain the resids of the polymers of each micelle .. code:: ipython3 resids_total='data/pictures_tutorial/cyclic_scp_result.parquet' 3. Obtain the largest micelle from the clustering pandas dataframe .. code:: ipython3 largest_micelle_resids = micelle_whole(topology, trajectory).obtain_largest_micelle_resids(resids_total) 4. Now, obtain the positions of the whole micelle .. code:: ipython3 #select the resname of the polymers resname=['LIG'] #run to obtain the whole positions start=0 stop=10001 step=1 #run micelle_whole atom_pos = micelle_whole(topology, trajectory).running_make_cluster_whole(resname, largest_micelle_resids, start, stop, step) .. parsed-literal:: 0%| | 0/3 [00:00