Tutorial on the usage of spherical_density tool =============================================== Here, two examples on how to use the spherical_density tool for the calculation of the distribution of components of a micelle. First we will show how to use spherical_density to calculate the density of the hydrophobic block of the polymer. Then we will show how to use spherical_density_water to calculate the spherical density of the water in the simulation spherical_density tool ---------------------- Before starting any analysis, load the neccesary modules for this class. .. code:: ipython3 from utils_mda import MDA_input #from pysoftk.pol_analysis.tools.utils_mda import MDA_input from utils_tools import * #from pysoftk.pol_analysis.tools.utils_tools import * from clustering import SCP #from pysoftk.pol_analysis.clustering import SCP from make_micelle_whole import micelle_whole #from pysoftk.pol_analysis.make_micelle_whole import micelle_whole from spherical_density import spherical_density #from pysoftk.pol_analysis.spherical_density import spherical_density import numpy as np import pandas as pd .. parsed-literal:: /home/raquellrdc/Desktop/PhD/mda_umap/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html from .autonotebook import tqdm as notebook_tqdm 1. Select your simulation files, it is recommended to use a tpr file for the topology and xtc file for the trajectory. .. code:: ipython3 topology='data/spherical_density.tpr' trajectory='data/spherical_density.xtc' 2. Import the clustering data from SCP function .. code:: ipython3 resids_total='data/spherical.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. ‘largest_micelle_resids’ is a np.array with the resids of the molecules that belong to the same cluster of the steps of the trajectory where SCP was ran. .. code:: ipython3 largest_micelle_resids .. parsed-literal:: [array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20])] Now, let’s obtain the coordinates of the largest micelle made whole across the pbc 5. Let’s define the resname of the molecules that we want to make whole. More than one resname can be inputted. Note that it should be the resname of the molecules of the largest_micelle array. .. code:: ipython3 resname=['LIG'] 6. Also, define the start, step and end point of the trajectory frames that you want to run the analysis on. Note that they need to be the same as the ones you ran the SCP clustering on. .. code:: ipython3 start=0 stop=1000 step=2 7. Obtain the whole coordinates of the micelle. This is key to perform the densitity calculation taking properly into account the PBC .. code:: ipython3 atom_pos = micelle_whole(topology, trajectory).running_make_cluster_whole(resname, largest_micelle_resids, start, stop, step) .. parsed-literal:: 0%| | 0/11 [00:00