<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://chemwiki.ch.ic.ac.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mt1817</id>
	<title>ChemWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://chemwiki.ch.ic.ac.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mt1817"/>
	<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/wiki/Special:Contributions/Mt1817"/>
	<updated>2026-04-19T17:45:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/hpc&amp;diff=734208</id>
		<title>Mod:Hunt Research Group/hpc</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/hpc&amp;diff=734208"/>
		<updated>2018-07-17T14:52:16Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: /* Recommended specifications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Running jobs on the Imperial HPC=&lt;br /&gt;
Back to the main [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group wiki-page]&lt;br /&gt;
&lt;br /&gt;
== Queues to run on ==&lt;br /&gt;
:&#039;&#039;&#039;pqph&#039;&#039;&#039; (various, see below) this is the hunt group queue, runs on the servers listed below&lt;br /&gt;
::each user has can have a &#039;&#039;&#039;maximum of 12 running jobs&#039;&#039;&#039;&lt;br /&gt;
::to help balance usage please have a &#039;&#039;&#039;maximum of 20 jobs running or qued&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;&#039;pqchem&#039;&#039;&#039; (42 nodes) this is the chemistry department queue, &lt;br /&gt;
:&#039;&#039;&#039;chemlab1&#039;&#039;&#039; (2 chassis) this is for the computational chemistry lab but can be used out of term time&lt;br /&gt;
:which can be accessed from https://scanweb.cc.ic.ac.uk/&lt;br /&gt;
&lt;br /&gt;
== Using qstat ==&lt;br /&gt;
:qstat to get your jobs that are running&lt;br /&gt;
:qstat -q to get a list of all queues&lt;br /&gt;
:qdel and ID number to remove a job from the queue&lt;br /&gt;
:a short script to list all the queues in one command&lt;br /&gt;
::type qstatme and it will list the info for the three queues pqph, chemlab1 and pqchem&lt;br /&gt;
&amp;lt;pre&amp;gt;[phunt@login-3-internal]/home/phunt/bin $ cat qstatme&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#&lt;br /&gt;
qstat -q | grep &#039;pqph &#039;&lt;br /&gt;
qstat -q | grep &#039;chemlab1 &#039;&lt;br /&gt;
qstat -q | grep &#039;pqchem &#039;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Submit script uses PBS queing==&lt;br /&gt;
*everyone should START by using this script, and not the automated submission script (see later)&lt;br /&gt;
*have a copy of this script in the directory you are running the job from&lt;br /&gt;
*here is an example called rng16_66&lt;br /&gt;
&amp;lt;pre&amp;gt;[phunt@login-3-internal]/work/phunt/ $ cat rng16_66&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# submit jobs to the que with this script using the following command:&lt;br /&gt;
# qsub -N jobname -v in=name rng16_66&lt;br /&gt;
# rng16_66 is this script&lt;br /&gt;
# jobname is a name you will see in the qstat command&lt;br /&gt;
# name is the actual file minus .com etc it is passed into this script as ${in}&lt;br /&gt;
&lt;br /&gt;
# batch processing commands&lt;br /&gt;
#PBS -l walltime=119:59:00&lt;br /&gt;
#PBS -lselect=1:ncpus=16:mem=64000MB&lt;br /&gt;
#PBS -j oe&lt;br /&gt;
#PBS -q pqph&lt;br /&gt;
&lt;br /&gt;
# load modules&lt;br /&gt;
#&lt;br /&gt;
  module load gaussian/g09-d01&lt;br /&gt;
&lt;br /&gt;
# check for a checkpoint file&lt;br /&gt;
#&lt;br /&gt;
# variable PBS_O_WORKDIR=directoiry from which the job was sumbited.&lt;br /&gt;
   test -r $PBS_O_WORKDIR/${in}.chk&lt;br /&gt;
   if [ $? -eq 0 ]&lt;br /&gt;
   then&lt;br /&gt;
     echo &amp;quot;located $PBS_O_WORKDIR/${in}.chk&amp;quot;&lt;br /&gt;
     cp $PBS_O_WORKDIR/${in}.chk $TMPDIR/.&lt;br /&gt;
   else&lt;br /&gt;
     echo &amp;quot;no checkpoint file $PBS_O_WORKDIR/${in}.chk&amp;quot;&lt;br /&gt;
   fi   &lt;br /&gt;
#&lt;br /&gt;
# run gaussian&lt;br /&gt;
#&lt;br /&gt;
  pbsexec g09 $PBS_O_WORKDIR/${in}.com&lt;br /&gt;
#&lt;br /&gt;
# job has ended copy back the checkpoint file&lt;br /&gt;
# check to see if there are other external files like .wfn or .mos and copy these as well&lt;br /&gt;
#&lt;br /&gt;
  cp $TMPDIR/${in}.chk /$PBS_O_WORKDIR/.&lt;br /&gt;
  test -r $TMPDIR/${in}.wfn&lt;br /&gt;
  if [ $? -eq 0 ]&lt;br /&gt;
  then&lt;br /&gt;
    cp $TMPDIR/${in}.wfn /$PBS_O_WORKDIR/${in}.wfn&lt;br /&gt;
  fi&lt;br /&gt;
  test -r $TMPDIR/fort.7&lt;br /&gt;
  if [ $? -eq 0 ]&lt;br /&gt;
  then&lt;br /&gt;
    cp $TMPDIR/fort.7 /$PBS_O_WORKDIR/${in}.mos&lt;br /&gt;
  fi&lt;br /&gt;
# exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Without &amp;quot;#!/bin/sh&amp;quot; in the beginning of the job script, the job will always go to the queue &amp;quot;short&amp;quot; instead of the queue asked for.&lt;br /&gt;
&lt;br /&gt;
==ONLY once you have used the queuing script for some time==&lt;br /&gt;
*use the &amp;lt;b&amp;gt;gf script&amp;lt;/b&amp;gt; created by Giacommo made which makes it easier to submit jobs to the hpc. &lt;br /&gt;
*The link below contains the script and instructions for using it.&lt;br /&gt;
::https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/pimpQSUB&lt;br /&gt;
&lt;br /&gt;
== Comments on the PBS ==&lt;br /&gt;
\#PBS -l walltime=119:59:00&lt;br /&gt;
*the -l &amp;lt;b&amp;gt;walltime&amp;lt;/b&amp;gt; is the maximum time the job will run in seconds it will be killed at the walltime&lt;br /&gt;
*pqph has a very long walltime, other queues have a shorter walltime, &amp;lt;b&amp;gt;adjust as necessary&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\#PBS -q pqph&lt;br /&gt;
*the -q option tells it which queue to run on &amp;lt;b&amp;gt;adjust as necessary&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\#PBS -lselect=1:ncpus=16:mem=64000MB&lt;br /&gt;
*this is a very important line!&lt;br /&gt;
*lselect=1 means run on one node&lt;br /&gt;
*ncpus=the number of cpus&lt;br /&gt;
*mem=the maximum amount of memory&lt;br /&gt;
*these are specific to each node, &lt;br /&gt;
**it is &amp;lt;b&amp;gt;important&amp;lt;/b&amp;gt; that you manage your usage properly to not waste resources and to allow efficient usage when there is a backlog of jobs&lt;br /&gt;
**decide on the size of your job, do you need many processors and lots of memory? if not run on a smaller node!&lt;br /&gt;
**use [https://www.hpc.imperial.ac.uk/selfservice/cx1/pqadmin/pqph/nodes nodes] to select which node you want to run on&lt;br /&gt;
**set the ncpus and mem appropriately (see below)&lt;br /&gt;
**note that you cannot use as much memory as is indicated in the Node status table, always request slightly less&lt;br /&gt;
*sometimes the job does not go in properly if you use GB so always use MB in your specification&lt;br /&gt;
**1GB=1000MB&lt;br /&gt;
&lt;br /&gt;
\#PBS -j oe&lt;br /&gt;
•merge the standard &amp;lt;b&amp;gt;o&amp;lt;/b&amp;gt;utput and &amp;lt;b&amp;gt;e&amp;lt;/b&amp;gt;rror files&lt;br /&gt;
&lt;br /&gt;
== Memory needed to run ==&lt;br /&gt;
&lt;br /&gt;
*Gaussian is greedy and will &amp;lt;b&amp;gt;exceed the allocated memory&amp;lt;/b&amp;gt;&lt;br /&gt;
:: each proc needs a gaussian executable, which takes about 8MW (or 12 for MP2 frequencies)&lt;br /&gt;
::MW is megaword which is the unit gaussian allocates memory&lt;br /&gt;
::1MW is about 8.4MB&lt;br /&gt;
:::so each proc needs 1*8*8.4 approximately 68MB just to run&lt;br /&gt;
:::so 12 proc jobs require 12*68=816MB  just to run&lt;br /&gt;
:::so 16 proc jobs require 16*68=1088MB  just to run&lt;br /&gt;
:::so 20 proc jobs require 20*68=1360MB  just to run&lt;br /&gt;
:::so 24 proc jobs require 24*68=1632MB  just to run&lt;br /&gt;
:::so 40 proc jobs require 40*68=2720MB  just to run&lt;br /&gt;
:::so 48 proc jobs require 48*68=3264MB  just to run&lt;br /&gt;
::so when allocating memory inside the gaussian job you must reduce the memory by at least this amount&lt;br /&gt;
*thus best to reduce the memory by about 100MB*no.processors inside the gaussian script&lt;br /&gt;
*you also need some overhead within the PBS script&lt;br /&gt;
&lt;br /&gt;
*the memory can be given in binary such as 251 GB (binary) is really 251 GB =251000*1,048,576 Bytes =264GB (decimal)&lt;br /&gt;
&lt;br /&gt;
== Recommended specifications ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;in the following&amp;lt;/b&amp;gt;&lt;br /&gt;
: the first line gives the processor and memory&lt;br /&gt;
: the second line the amount to allocate in the PBS script&lt;br /&gt;
: the third and fourth lines the amount to allocated in the gaussian com file&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Small jobs&#039;&#039;&#039; use half a 24proc node: 12 cpu 47 GB&lt;br /&gt;
::\#PBS -lselect=1:ncpus=12:mem=46000MB&lt;br /&gt;
::%nprocs=12&lt;br /&gt;
::%mem=45000MB&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Medium jobs&#039;&#039;&#039; 7 nodes: 32 cpu 62 GB&lt;br /&gt;
::\#PBS -lselect=1:ncpus=32:mem=61000MB&lt;br /&gt;
::%nprocs=32&lt;br /&gt;
::%mem=58000MB&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Medium jobs&#039;&#039;&#039; 12 nodes: 24 cpu 92 GB&lt;br /&gt;
::\#PBS -lselect=1:ncpus=24:mem=91000MB&lt;br /&gt;
::%nprocs=24&lt;br /&gt;
::%mem=88000MB&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Large jobs&#039;&#039;&#039; 7 nodes: 40 cpu 125 GB&lt;br /&gt;
::\#PBS -lselect=1:ncpus=40:mem=124000MB&lt;br /&gt;
::%nprocs=40&lt;br /&gt;
::%mem=120000MB&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Largest  jobs&#039;&#039;&#039; 4 nodes: 48 cpu 256 GB&lt;br /&gt;
::\#PBS -lselect=1:ncpus=48:mem=255000MB&lt;br /&gt;
::%nprocs=48&lt;br /&gt;
::%mem=250000MB&lt;br /&gt;
&lt;br /&gt;
*add &amp;lt;b&amp;gt;tmpspace=400&amp;lt;/b&amp;gt; only for large disk jobs to ensure you are put on a node with enough disk!! &lt;br /&gt;
*Note that this requires you to include &amp;lt;b&amp;gt;maxdisk=400gb&amp;lt;/b&amp;gt; in your gaussian input.&lt;br /&gt;
:&amp;lt;span style=&amp;quot;color:#FF0000&amp;quot;&amp;gt;NOTE the queing system does not check disk allocations. When requesting large disk jobs remember to request all of the processors on a node even if you are not using all of the processors. For large jobs the maximum disk space you can request is &#039;&#039;&#039;800GB&#039;&#039;&#039; on the 12 processor nodes.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==more details for if you seem to be having memory or disk issues==&lt;br /&gt;
*normal jobs&lt;br /&gt;
::will need 2*N^2 W *8.4 to get B (1,048,576B =1MB)&lt;br /&gt;
:: so 300 basis functions will need 180000W =0.18MW =1.5MB in addition to the above requirements&lt;br /&gt;
::require 2ON^2 W of disk to run where O=number of occupied orbitals, N=number of basis functions&lt;br /&gt;
&lt;br /&gt;
*MP2 jobs &lt;br /&gt;
:: work best with %mem and maxdisk defined&lt;br /&gt;
:: in-core requires N^4/4 divided by 1,000,000 MW memory&lt;br /&gt;
:: so 400 basis functions will need 6400MW=53760MB=54GB memory per node, which is unlikely!&lt;br /&gt;
:: semi-direct requires 2*O(N^2) memory and N^3 disk&lt;br /&gt;
:: so N=476 basis functions O=56 occupied orbitals will need &lt;br /&gt;
::25.4MW=214MB of memory &lt;br /&gt;
::and 108MW=906MB disk (this is not actually true it will need much more probably around 1800MB disk per processor!)&lt;br /&gt;
::so total memory for MP2 freq 8proc will be &lt;br /&gt;
::12*8*8.4=807MB to run and 8*214=1712MB for calcs and some extra 400MB=3019MB=3.3GB&lt;br /&gt;
::gaussian does not like GB directive so give %mem in MB&lt;br /&gt;
&lt;br /&gt;
== checkpoint and other files ==&lt;br /&gt;
: checkpoint files should be exactly the same name as the input file name&lt;br /&gt;
: for jobs that may exceed the wall time specify the full path of the checkpoint file, for example &lt;br /&gt;
::%chk=/work/phunt/tmp/filename.chk&lt;br /&gt;
:this means the checkpoint file will be written into your personal work directory, it may slow the job down&lt;br /&gt;
:this is also the reason /work is sometimes very slow on CX1 so only do this as an &amp;lt;b&amp;gt;exception!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other information (may be out of date) ==&lt;br /&gt;
:3.1 CPMD:&lt;br /&gt;
::https://www.ch.ic.ac.uk/wiki/index.php/Image:Runcpmd_md.sh&lt;br /&gt;
:3.2 DL-POLY:&lt;br /&gt;
::https://www.ch.ic.ac.uk/wiki/index.php/Image:Mpirun.sh&lt;br /&gt;
::Note: You´ll not be able to see the output until the job finishes : the directory /tmp/pb.XXX isn´t accessible to you because it is on the private disk of the node running the job.&lt;br /&gt;
::To get DLPOLY to terminate before the job hits the walltime limit and killed, you need to run it through a program called pbsexec, for example:&lt;br /&gt;
::pbsexec mpiexec DLPOLY.X&lt;br /&gt;
::This will kill DLPOLY 15 minutes before the walltime limit, giving your script time to transfer files back to $work.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694812</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694812"/>
		<updated>2018-03-25T11:51:10Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here. [[How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;br /&gt;
[[File:SDF 7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Options)&lt;br /&gt;
6-1. Change the SDF graphics based on your preference.&lt;br /&gt;
[[File:SDF 8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6-2. Change the background colour based on your preference.&lt;br /&gt;
[[File:SDF 9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6-3. Change the input file based on your preference.&lt;br /&gt;
[[File:SDF 10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Insert the reference molecule (cation) by following the instruction below.&lt;br /&gt;
[[File:SDF 11.jpg]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694810</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694810"/>
		<updated>2018-03-25T11:50:18Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;br /&gt;
[[File:SDF 7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Options)&lt;br /&gt;
6-1. Change the SDF graphics based on your preference.&lt;br /&gt;
[[File:SDF 8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6-2. Change the background colour based on your preference.&lt;br /&gt;
[[File:SDF 9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6-3. Change the input file based on your preference.&lt;br /&gt;
[[File:SDF 10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Insert the reference molecule (cation) by following the instruction below.&lt;br /&gt;
[[File:SDF 11.jpg]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.docx&amp;diff=694809</id>
		<title>File:How to generate SDF.docx</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.docx&amp;diff=694809"/>
		<updated>2018-03-25T11:50:13Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:How to generate SDF.docx&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_11.jpg&amp;diff=694808</id>
		<title>File:SDF 11.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_11.jpg&amp;diff=694808"/>
		<updated>2018-03-25T11:48:10Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694806</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694806"/>
		<updated>2018-03-25T11:46:01Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;br /&gt;
[[File:SDF 7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Options)&lt;br /&gt;
6-1. Change the SDF graphics based on your preference.&lt;br /&gt;
[[File:SDF 8.jpg]]&lt;br /&gt;
&lt;br /&gt;
6-2. Change the background colour based on your preference.&lt;br /&gt;
[[File:SDF 9.jpg]]&lt;br /&gt;
&lt;br /&gt;
6-3. Change the input file based on your preference.&lt;br /&gt;
[[File:SDF 10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. Insert the reference molecule (cation) by following the instruction below.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_10.jpg&amp;diff=694805</id>
		<title>File:SDF 10.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_10.jpg&amp;diff=694805"/>
		<updated>2018-03-25T11:45:42Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_9.jpg&amp;diff=694804</id>
		<title>File:SDF 9.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_9.jpg&amp;diff=694804"/>
		<updated>2018-03-25T11:44:44Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_8.jpg&amp;diff=694803</id>
		<title>File:SDF 8.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_8.jpg&amp;diff=694803"/>
		<updated>2018-03-25T11:43:09Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694802</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694802"/>
		<updated>2018-03-25T11:42:31Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;br /&gt;
[[File:SDF 7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Options)&lt;br /&gt;
6-1. Change the SDF graphics based on your preference.&lt;br /&gt;
[[File:SDF 8.jpg]]&lt;br /&gt;
&lt;br /&gt;
6-2. Change the background colour based on your preference.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694801</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694801"/>
		<updated>2018-03-25T11:40:32Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;br /&gt;
[[File:SDF 7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(Options)&lt;br /&gt;
6-1. Change the SDF graphics based on your preference.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_7.jpg&amp;diff=694800</id>
		<title>File:SDF 7.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_7.jpg&amp;diff=694800"/>
		<updated>2018-03-25T11:39:52Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_6.jpg&amp;diff=694799</id>
		<title>File:SDF 6.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_6.jpg&amp;diff=694799"/>
		<updated>2018-03-25T11:38:41Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694798</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694798"/>
		<updated>2018-03-25T11:38:07Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;br /&gt;
[[File:SDF 6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Start VMD. Open your SDF by following the instruction below.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694796</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694796"/>
		<updated>2018-03-25T11:35:12Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694795</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694795"/>
		<updated>2018-03-25T11:34:07Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694793</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694793"/>
		<updated>2018-03-25T11:33:18Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
&lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694792</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694792"/>
		<updated>2018-03-25T11:31:57Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;br /&gt;
[[File:SDF 5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. When you finish answering all questions, TRAVIS starts creating SDF files. W	ait until ***The End*** is shown. Then, execute “ls -l”, and you will find the created files. Send SDF files(.plt) and ref file to your local machine.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_5.jpg&amp;diff=694791</id>
		<title>File:SDF 5.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_5.jpg&amp;diff=694791"/>
		<updated>2018-03-25T11:31:20Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694789</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694789"/>
		<updated>2018-03-25T11:25:19Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
 In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
 In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
 In [N1444][NTf2] example, you will find the structure shown in Fig 1.&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.&lt;br /&gt;
[[File:SDF 4.jpg]]&lt;br /&gt;
&lt;br /&gt;
4. Return to the directory created in Step 1, and execute “travis HISTORY” again. Restart answering the questions. When you face “Create images of the structural formulas?”, answer no (just type Enter) this time, and keep answering until the end.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_4.jpg&amp;diff=694787</id>
		<title>File:SDF 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_4.jpg&amp;diff=694787"/>
		<updated>2018-03-25T11:24:01Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694786</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694786"/>
		<updated>2018-03-25T11:22:02Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;br /&gt;
[[File:SDF 3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Visualise the “.dot” files. Choose from the options below. &lt;br /&gt;
3-1. Using Graphviz (Recommended)&lt;br /&gt;
Visit https:/www.graphviz.org/download/ and download Graphviz.&lt;br /&gt;
Then, execute “neato -Tpng mol1_****.dot -o mol1_***.png”.&lt;br /&gt;
  (In [N1444][NTf2] example, execute “neato -Tpng mol1_C2F6NO4S2.dot -o mol1_C2F6NO4S2.png”.)&lt;br /&gt;
Likewise, execute “neato -Tpng mol2_****.dot -o mol2_***.png”.&lt;br /&gt;
  (In [N1444][NTf2] example, execute “neato -Tpng mol1_C13H30N.dot -o mol1_C13H30N.png”.)&lt;br /&gt;
&lt;br /&gt;
When you execute “ls -l”, you will find two png files. After sending these png files to your local machine, open them and confirm the chemical structures.&lt;br /&gt;
  (In [N1444][NTf2] example, you will find the structure shown in Fig 1.)&lt;br /&gt;
&lt;br /&gt;
3-2. Handwriting the chemical structure (Recommended only if the structure is simple)&lt;br /&gt;
In the screen, you will find “bond matrices” shown as below. Thus, you can handwrite the chemical structure based on this information.&lt;br /&gt;
(For example, the matrices below mean C1 is bonded to F4, F5, F6, and S1.)&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_3.jpg&amp;diff=694785</id>
		<title>File:SDF 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_3.jpg&amp;diff=694785"/>
		<updated>2018-03-25T11:19:44Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694784</id>
		<title>File:SDF 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694784"/>
		<updated>2018-03-25T11:18:31Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 2.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694782</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694782"/>
		<updated>2018-03-25T11:17:35Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After answering “Create images of the structural formulas?”, press “Ctrl” and “c” at the same to quit once.   &lt;br /&gt;
Then, execute “ls -l”, and you will find “.dot” files.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694781</id>
		<title>File:SDF 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694781"/>
		<updated>2018-03-25T11:17:06Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 2.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694780</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694780"/>
		<updated>2018-03-25T11:16:01Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;br /&gt;
[[File:SDF 2.jpg]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694779</id>
		<title>File:SDF 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_2.jpg&amp;diff=694779"/>
		<updated>2018-03-25T11:15:55Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694777</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694777"/>
		<updated>2018-03-25T11:13:48Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Execute “travis HISTORY” in the created directory, and answer the displayed questions based on your model (and preference). Default answers are shown in brackets and when you choose the default answers, just type Enter. Questions and answers shown below are based on [N1444][NTf2].&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694774</id>
		<title>File:SDF 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694774"/>
		<updated>2018-03-25T11:12:37Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 1.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694772</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694772"/>
		<updated>2018-03-25T11:07:20Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;br /&gt;
Figure 1. Structure of [N1444][NTf2]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Create a new directory and put HISTORY file there.&lt;br /&gt;
*HISTORY file is so huge that it takes much time to copy. It is recommended to make a link from the original location by executing “ln -s (Original location)/HISTORY HISTORY” in the created directory.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694769</id>
		<title>File:SDF 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694769"/>
		<updated>2018-03-25T11:06:10Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 1.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694768</id>
		<title>File:SDF 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694768"/>
		<updated>2018-03-25T11:05:13Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 1.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694766</id>
		<title>File:SDF 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694766"/>
		<updated>2018-03-25T11:03:53Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:SDF 1.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694765</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694765"/>
		<updated>2018-03-25T11:02:11Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
*The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;br /&gt;
&lt;br /&gt;
[[File:SDF 1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694764</id>
		<title>File:SDF 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:SDF_1.jpg&amp;diff=694764"/>
		<updated>2018-03-25T11:01:45Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694762</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694762"/>
		<updated>2018-03-25T10:57:31Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide (Fig. 1)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;How to draw SDFs with TRAVIS&#039;&#039;&#039;&lt;br /&gt;
The explanation below is written to explain how to draw spatial distribution of anions in the first shell around a cation by using [N1444][NTf2] as an example.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694759</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=694759"/>
		<updated>2018-03-25T10:53:07Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Manual in Word format is obtained here:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=685520</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=685520"/>
		<updated>2018-03-12T19:34:13Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[File:How to generate SDF.docx]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.docx&amp;diff=685515</id>
		<title>File:How to generate SDF.docx</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.docx&amp;diff=685515"/>
		<updated>2018-03-12T19:30:37Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683489</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683489"/>
		<updated>2018-03-11T17:05:31Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using. [N1444][NTf2]= tri-n-butylmethylammonium bis-(trifluoromethanesulfonyl)imide&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683309</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683309"/>
		<updated>2018-03-11T11:58:24Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683308</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683308"/>
		<updated>2018-03-11T11:58:03Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]] NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683307</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683307"/>
		<updated>2018-03-11T11:57:40Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
 NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683306</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683306"/>
		<updated>2018-03-11T11:57:22Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;br /&gt;
*NB: When you use this file with TRAVIS, change the file name from HISTORY.txt to HISTORY before using.&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.pdf&amp;diff=683301</id>
		<title>File:How to generate SDF.pdf</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:How_to_generate_SDF.pdf&amp;diff=683301"/>
		<updated>2018-03-11T11:20:07Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: Mt1817 uploaded a new version of File:How to generate SDF.pdf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683299</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683299"/>
		<updated>2018-03-11T11:08:33Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to generate SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683172</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683172"/>
		<updated>2018-03-10T17:35:33Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to draw SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683171</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683171"/>
		<updated>2018-03-10T17:35:20Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
How to draw SDF with TRAVIS is explained in this manual. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*[N1444][NTf2] HISTORY(trajectory) file for trial use is here. [[Media:HISTORY.txt]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683145</id>
		<title>Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Talk:Mod:Hunt_Research_Group/How_to_draw_SDFs_with_TRAVIS&amp;diff=683145"/>
		<updated>2018-03-10T16:57:58Z</updated>

		<summary type="html">&lt;p&gt;Mt1817: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRAVIS is a free tool for analyzing and visualizing trajectories from MD simulations.&lt;br /&gt;
&lt;br /&gt;
TRAVIS source code can be obtained for free from &amp;quot;Source Code (.tar.gz)&amp;quot; at Download page on TRAVIS website.[http://www.travis-analyzer.de/]&lt;br /&gt;
How to compile and Install TRAVIS is explained on Page 3 in &amp;quot;Quick Start Guide (PDF)&amp;quot; which can be downloaded on the same link.&lt;br /&gt;
&lt;br /&gt;
Details about TRAVIS is explained in the paper.[https://pubs.acs.org/doi/abs/10.1021/ci200217w]  &lt;br /&gt;
 M. Brehm and B. Kirchner. J. Chem. Inf. Model. 2011, 51 (8), pp 2007-2023.&lt;br /&gt;
&lt;br /&gt;
*Manual is here. [[Media:How to generate SDF.pdf]]&lt;br /&gt;
*HISTORY file([N1444][NTf2]) for trial use is here. [[Media:HISTORY.txt]]&lt;/div&gt;</summary>
		<author><name>Mt1817</name></author>
	</entry>
</feed>