In [1]:
print("Hello, World!")


Hello, World!

Importing Relevant Modules


In [2]:
import scipy

In [3]:
import matplotlib

In [4]:
import pandas

In [5]:
import numpy

In [6]:
import os
os.getcwd()


Out[6]:
'/home/main/notebooks'

In [7]:
import sys
sys.path.append("/home/main/notebooks/Asap-3.8.4/Python/")
print sys.path


['', '/home/main/anaconda2/lib/python27.zip', '/home/main/anaconda2/lib/python2.7', '/home/main/anaconda2/lib/python2.7/plat-linux2', '/home/main/anaconda2/lib/python2.7/lib-tk', '/home/main/anaconda2/lib/python2.7/lib-old', '/home/main/anaconda2/lib/python2.7/lib-dynload', '/home/main/anaconda2/lib/python2.7/site-packages/Sphinx-1.3.5-py2.7.egg', '/home/main/anaconda2/lib/python2.7/site-packages/setuptools-20.3-py2.7.egg', '/home/main/anaconda2/lib/python2.7/site-packages', '/home/main/anaconda2/lib/python2.7/site-packages/IPython/extensions', '/home/main/.ipython', '/home/main/notebooks/Asap-3.8.4/Python/']

In [8]:
os.chdir("/home/main/notebooks/Asap-3.8.4/")

In [9]:
os.listdir('.')


Out[9]:
['OpenKIMimport',
 'Depend',
 'campos-asap.spec',
 'makefile-UbuntuVBox',
 'scripts',
 'setup-filelist.txt',
 'gentoo-setup.sh',
 'Projects',
 'makefile-niflheim6',
 'INSTALLATION',
 'makefile-dl160g6-el6',
 'asapmpiinfo-input.py',
 'recordversion.py',
 'build',
 'compiling.m',
 'makefile-ppc64',
 'LICENSE',
 'makefile-x86_64-gnu',
 'makefile-niflheim',
 'setup.py',
 'makefile-default',
 'doc',
 'ParallelInterface',
 'makefile-macos',
 'detect.py',
 'Interface',
 'makefile-x86_64-debug',
 'Python',
 'compile-niflheim.sh',
 'makefile-i686-debug',
 'makefile-demokrit',
 'makefile-i686-gnu',
 'LICENSE.LESSER',
 'Brenner',
 'makefile-sun4u-cc',
 'makefile-sun4u',
 'Distutils-autogen',
 'makefile-sl230s-el6',
 'makefile-alpha',
 'Tools',
 'makefile-x3455-el6',
 'BUGS',
 'makefile-AMD-Opteron-el5',
 'Parallel',
 'Test',
 'README',
 'makefile-Intel-Nehalem-el5',
 'makefile-x86_64-profile',
 'makefile-x86_64-pathscale',
 'getconfig.py',
 'makefile-i686-intel',
 'Examples',
 'makefile-demokrit.local',
 'Makefile',
 'Doxyfile',
 'makefile-demokrit.fysik.dtu.dk',
 'TODO',
 'depend.CHANGES',
 'Basics',
 'x86_64',
 'makefile-x86_64-intel',
 'backtrace-special',
 'findnonascii.py',
 'Debug',
 'OpenKIMexport']

In [12]:
from asap3.analysis.rdf import RadialDistributionFunction

In [ ]: