[Yt-svn] yt-commit r560 - in trunk/doc: . build/doctrees build/html build/html/_sources build/html/tutorial source

mturk at wrangler.dreamhost.com mturk at wrangler.dreamhost.com
Mon Jun 16 14:23:47 PDT 2008


Author: mturk
Date: Mon Jun 16 14:23:46 2008
New Revision: 560
URL: http://yt.spacepope.org/changeset/560

Log:
Minor shuffling.  Added information about maintained installations.



Added:
   trunk/doc/build/doctrees/getting_started.doctree   (contents, props changed)
   trunk/doc/build/html/_sources/getting_started.txt
   trunk/doc/build/html/getting_started.html
   trunk/doc/source/getting_started.rst
Modified:
   trunk/doc/Makefile
   trunk/doc/build/doctrees/environment.pickle
   trunk/doc/build/doctrees/index.doctree
   trunk/doc/build/doctrees/intro.doctree
   trunk/doc/build/html/_sources/index.txt
   trunk/doc/build/html/_sources/intro.txt
   trunk/doc/build/html/index.html
   trunk/doc/build/html/intro.html
   trunk/doc/build/html/searchindex.json
   trunk/doc/build/html/tutorial/index.html
   trunk/doc/source/index.rst
   trunk/doc/source/intro.rst

Modified: trunk/doc/Makefile
==============================================================================
--- trunk/doc/Makefile	(original)
+++ trunk/doc/Makefile	Mon Jun 16 14:23:46 2008
@@ -23,7 +23,8 @@
 	@echo "  linkcheck to check all external links for integrity"
 
 clean:
-	-rm -rf build/*
+	@echo "I WILL NOT CLEAN THIS FOR YOU"
+	#-rm -rf build/*
 
 html:
 	mkdir -p build/html build/doctrees

Modified: trunk/doc/build/doctrees/environment.pickle
==============================================================================
Binary files. No diff available.

Added: trunk/doc/build/doctrees/getting_started.doctree
==============================================================================
Binary file. No diff available.

Modified: trunk/doc/build/doctrees/index.doctree
==============================================================================
Binary files. No diff available.

Modified: trunk/doc/build/doctrees/intro.doctree
==============================================================================
Binary files. No diff available.

Added: trunk/doc/build/html/_sources/getting_started.txt
==============================================================================
--- (empty file)
+++ trunk/doc/build/html/_sources/getting_started.txt	Mon Jun 16 14:23:46 2008
@@ -0,0 +1,103 @@
+===============
+Getting Started
+===============
+
+Maintained Installations
+========================
+
+As of right now, I maintain an installation of yt on several machines.  I try
+to keep them up to date with the stable branch.
+
+DataStar (SDSC)
+---------------
+
+To use yt on 
+`DataStar <http://www.sdsc.edu/us/resources/datastar/>`_,
+you need to ensure you are using the correct
+installation of Python 2.4 and the correct set of python packages.  In my
+.bashrc I have:
+
+.. code-block:: bash
+
+   export PATH=/usr/local/apps/python_2.4.2_64/bin:$PATH
+   export PYTHONPATH=/users/stanford/mturk/local/lib/python2.4/site-packages/
+
+which ensures that you are using my installation of yt and the correct, 64-bit
+global installation of Python2.4.
+
+Orange and Red (SLAC)
+---------------------
+
+To use yt on `Orange <http://kipac.stanford.edu/collab/computing/hardware/orange>`_
+or `Red <http://www.sgi.com/company_info/newsroom/press_releases/2005/april/space_sciences.html>`_
+you have to set your pythonpath appropriately.  I have created a script called
+'pywrapper.sh' that sets up your PATH, PYTHONPATH and LD_LIBRARY_PATH.
+
+.. code-block:: bash
+
+   $ export ARCH_PATH="/u/ki/mturk/ki12/`uname -p`_local/"
+   $ $ARCH_PATH/bin/pywrapper.sh my_script.py
+
+where my_script.py is the script you wish to run.
+
+Binary Packages
+===============
+
+Installing From Source
+======================
+
+Prerequisites for yt
+--------------------
+
+A driving factor in the development of yt over the months leading to release
+0.3 has been the reduction of dependencies.  To that extent, only a few
+packages are required for the base usage, and a GUI toolkit if you are going to use
+the graphical user interface, Reason.
+
+ * `Python <http://python.org/>`_, at least version 2.4, but preferably 2.5.
+ * `HDF5 <http://www.hdfgroup.org/>`_, the data storage backend used by Enzo
+   and yt (if you can run Enzo, this is already installed!)
+ * `NumPy <http://numpy.scipy.org/>`_, the fast numerical backend for Python
+ * `MatPlotLib <http://matplotlib.sf.net/>`_, the plotting package
+ * `wxPython <http://www.wxpython.org/>`_, the GUI toolkit
+
+(If you are only interested in manipulating data without any graphical plotting
+or interfaces, you only need to install NumPy and Python!)
+
+Installing the Necessary Packages
+---------------------------------
+
+Installing Python itself is usually quite simple, and often very fast.  Because
+we're setting up a small system of packages, even if you have a system-wide
+install of python2.5 it can be easier in some cases to create a local directory
+structure:
+
+.. code-block:: bash
+
+   $ tar xvf Python-2.5.2.tar.gz
+   $ cd Python-2.5.2
+   $ ./configure --prefix=$HOME/local/
+   $ make install
+
+This will create (if necessary) a directory named local in your home directory,
+along with the necessary subdirectories.  When the executable
+``$HOME/lcoal/bin/python2.4`` is used to install a package, it will install it
+to the ``$HOME/local/`` directory structure.
+
+The python packages are fairly straightforward to install.  The process of
+installing packages in python has been greatly simplified over the last few
+years with the addition of setuptools, but for these particular packages I
+typically recommend installing from source, which for Python packages consists
+of changing to the source directory and issues the command:
+
+.. code-block:: bash
+
+   $ tar xvfz $PKGNAME.tar.gz
+   $ cd $PKGNAME
+   $ python2.5 setup.py install
+
+This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
+**strongly** suggest you seek binaries for your platform.  If they are not
+available, I recommend you read the ``INSTALL`` file and follow its directions
+closely.
+

Modified: trunk/doc/build/html/_sources/index.txt
==============================================================================
--- trunk/doc/build/html/_sources/index.txt	(original)
+++ trunk/doc/build/html/_sources/index.txt	Mon Jun 16 14:23:46 2008
@@ -10,6 +10,7 @@
    :maxdepth: 2
 
    intro
+   getting_started
    tutorial/index
    cookbook/index
    extending/index

Modified: trunk/doc/build/html/_sources/intro.txt
==============================================================================
--- trunk/doc/build/html/_sources/intro.txt	(original)
+++ trunk/doc/build/html/_sources/intro.txt	Mon Jun 16 14:23:46 2008
@@ -35,58 +35,3 @@
 
 ```EXPAND```
 
-Prerequisites for yt
---------------------
-
-A driving factor in the development of yt over the months leading to release
-0.3 has been the reduction of dependencies.  To that extent, only a few
-packages are required for the base usage, and a GUI toolkit if you are going to use
-the graphical user interface, Reason.
-
- * `Python <http://python.org/>`_, at least version 2.4, but preferably 2.5.
- * `HDF5 <http://www.hdfgroup.org/>`_, the data storage backend used by Enzo
-   and yt (if you can run Enzo, this is already installed!)
- * `NumPy <http://numpy.scipy.org/>`_, the fast numerical backend for Python
- * `MatPlotLib <http://matplotlib.sf.net/>`_, the plotting package
- * `wxPython <http://www.wxpython.org/>`_, the GUI toolkit
-
-(If you are only interested in manipulating data without any graphical plotting
-or interfaces, you only need to install NumPy and Python!)
-
-Installing the Necessary Packages
----------------------------------
-
-Installing Python itself is usually quite simple, and often very fast.  Because
-we're setting up a small system of packages, even if you have a system-wide
-install of python2.5 it can be easier in some cases to create a local directory
-structure:
-
-.. code-block:: bash
-
-   $ tar xvf Python-2.5.2.tar.gz
-   $ cd Python-2.5.2
-   $ ./configure --prefix=$HOME/local/
-   $ make install
-
-This will create (if necessary) a directory named local in your home directory,
-along with the necessary subdirectories.  When the executable
-``$HOME/lcoal/bin/python2.4`` is used to install a package, it will install it
-to the ``$HOME/local/`` directory structure.
-
-The python packages are fairly straightforward to install.  The process of
-installing packages in python has been greatly simplified over the last few
-years with the addition of setuptools, but for these particular packages I
-typically recommend installing from source, which for Python packages consists
-of changing to the source directory and issues the command:
-
-.. code-block:: bash
-
-   $ tar xvfz $PKGNAME.tar.gz
-   $ cd $PKGNAME
-   $ python2.5 setup.py install
-
-This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
-**strongly** suggest you seek binaries for your platform.  If they are not
-available, I recommend you read the ``INSTALL`` file and follow its directions
-closely.
-

Added: trunk/doc/build/html/getting_started.html
==============================================================================
--- (empty file)
+++ trunk/doc/build/html/getting_started.html	Mon Jun 16 14:23:46 2008
@@ -0,0 +1,191 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Getting Started — yt v0.3-pre documentation</title>
+    <link rel="stylesheet" href="_static/default.css" type="text/css" />
+    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+    <script type="text/javascript">
+      var DOCUMENTATION_OPTIONS = {
+        URL_ROOT:   '',
+        VERSION:    '0.3-pre'
+      };
+    </script>
+    <script type="text/javascript" src="_static/jquery.js"></script>
+    <script type="text/javascript" src="_static/interface.js"></script>
+    <script type="text/javascript" src="_static/doctools.js"></script>
+    <link rel="contents" title="Global table of contents" href="contents.html" />
+    <link rel="index" title="Global index" href="genindex.html" />
+    <link rel="search" title="Search" href="search.html" />
+    <link rel="top" title="yt v0.3-pre documentation" href="index.html" />
+    <link rel="next" title="A Short Tutorial" href="tutorial/index.html" />
+    <link rel="prev" title="Introduction" href="intro.html" />
+  </head>
+  <body>
+    <div class="related">
+      <h3>Navigation</h3>
+      <ul>
+        <li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
+        <li class="right"><a href="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
+          <li class="right"><a href="tutorial/index.html" title="A Short Tutorial" accesskey="N">next</a> |</li>
+          <li class="right"><a href="intro.html" title="Introduction" accesskey="P">previous</a> |</li>
+    <li><a href="http://yt.enzotools.org/">yt</a> »</li>
+    
+        <li><a href="index.html">yt v0.3-pre documentation</a> »</li>
+
+      </ul>
+    </div>
+    <div class="document">
+      <div class="documentwrapper">
+        <div class="bodywrapper">
+          <div class="body">
+            
+  
+  <div class="section">
+<h1 id="getting-started">Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1>
+<div class="section">
+<h2 id="maintained-installations">Maintained Installations<a class="headerlink" href="#maintained-installations" title="Permalink to this headline">¶</a></h2>
+<p>As of right now, I maintain an installation of yt on several machines.  I try
+to keep them up to date with the stable branch.</p>
+<div class="section">
+<h3 id="datastar-sdsc">DataStar (SDSC)<a class="headerlink" href="#datastar-sdsc" title="Permalink to this headline">¶</a></h3>
+<p>To use yt on
+<a class="reference" href="http://www.sdsc.edu/us/resources/datastar/">DataStar</a>,
+you need to ensure you are using the correct
+installation of Python 2.4 and the correct set of python packages.  In my
+.bashrc I have:</p>
+<div class="highlight"><pre><span class="nb">export </span><span class="nv">PATH</span><span class="o">=</span>/usr/local/apps/python_2.4.2_64/bin:<span class="nv">$PATH</span>
+<span class="nb">export </span><span class="nv">PYTHONPATH</span><span class="o">=</span>/users/stanford/mturk/local/lib/python2.4/site-packages/
+</pre></div>
+<p>which ensures that you are using my installation of yt and the correct, 64-bit
+global installation of Python2.4.</p>
+</div>
+<div class="section">
+<h3 id="orange-and-red-slac">Orange and Red (SLAC)<a class="headerlink" href="#orange-and-red-slac" title="Permalink to this headline">¶</a></h3>
+<p>To use yt on <a class="reference" href="http://kipac.stanford.edu/collab/computing/hardware/orange">Orange</a>
+or <a class="reference" href="http://www.sgi.com/company_info/newsroom/press_releases/2005/april/space_sciences.html">Red</a>
+you have to set your pythonpath appropriately.  I have created a script called
+‘pywrapper.sh’ that sets up your PATH, PYTHONPATH and LD_LIBRARY_PATH.</p>
+<div class="highlight"><pre><span class="nv">$ </span><span class="nb">export </span><span class="nv">ARCH_PATH</span><span class="o">=</span><span class="s2">"/u/ki/mturk/ki12/`uname -p`_local/"</span>
+<span class="nv">$ $ARCH_PATH</span>/bin/pywrapper.sh my_script.py
+</pre></div>
+<p>where my_script.py is the script you wish to run.</p>
+</div>
+</div>
+<div class="section">
+<h2 id="binary-packages">Binary Packages<a class="headerlink" href="#binary-packages" title="Permalink to this headline">¶</a></h2>
+</div>
+<div class="section">
+<h2 id="installing-from-source">Installing From Source<a class="headerlink" href="#installing-from-source" title="Permalink to this headline">¶</a></h2>
+<div class="section">
+<h3 id="prerequisites-for-yt">Prerequisites for yt<a class="headerlink" href="#prerequisites-for-yt" title="Permalink to this headline">¶</a></h3>
+<p>A driving factor in the development of yt over the months leading to release
+0.3 has been the reduction of dependencies.  To that extent, only a few
+packages are required for the base usage, and a GUI toolkit if you are going to use
+the graphical user interface, Reason.</p>
+<blockquote>
+<ul class="simple">
+<li><a class="reference" href="http://python.org/">Python</a>, at least version 2.4, but preferably 2.5.</li>
+<li><a class="reference" href="http://www.hdfgroup.org/">HDF5</a>, the data storage backend used by Enzo
+and yt (if you can run Enzo, this is already installed!)</li>
+<li><a class="reference" href="http://numpy.scipy.org/">NumPy</a>, the fast numerical backend for Python</li>
+<li><a class="reference" href="http://matplotlib.sf.net/">MatPlotLib</a>, the plotting package</li>
+<li><a class="reference" href="http://www.wxpython.org/">wxPython</a>, the GUI toolkit</li>
+</ul>
+</blockquote>
+<p>(If you are only interested in manipulating data without any graphical plotting
+or interfaces, you only need to install NumPy and Python!)</p>
+</div>
+<div class="section">
+<h3 id="installing-the-necessary-packages">Installing the Necessary Packages<a class="headerlink" href="#installing-the-necessary-packages" title="Permalink to this headline">¶</a></h3>
+<p>Installing Python itself is usually quite simple, and often very fast.  Because
+we’re setting up a small system of packages, even if you have a system-wide
+install of python2.5 it can be easier in some cases to create a local directory
+structure:</p>
+<div class="highlight"><pre><span class="nv">$ </span>tar xvf Python-2.5.2.tar.gz
+<span class="nv">$ </span><span class="nb">cd </span>Python-2.5.2
+<span class="nv">$ </span>./configure --prefix<span class="o">=</span><span class="nv">$HOME</span>/local/
+<span class="nv">$ </span>make install
+</pre></div>
+<p>This will create (if necessary) a directory named local in your home directory,
+along with the necessary subdirectories.  When the executable
+<tt class="docutils literal"><span class="pre">$HOME/lcoal/bin/python2.4</span></tt> is used to install a package, it will install it
+to the <tt class="docutils literal"><span class="pre">$HOME/local/</span></tt> directory structure.</p>
+<p>The python packages are fairly straightforward to install.  The process of
+installing packages in python has been greatly simplified over the last few
+years with the addition of setuptools, but for these particular packages I
+typically recommend installing from source, which for Python packages consists
+of changing to the source directory and issues the command:</p>
+<div class="highlight"><pre><span class="nv">$ </span>tar xvfz <span class="nv">$PKGNAME</span>.tar.gz
+<span class="nv">$ </span><span class="nb">cd</span> <span class="nv">$PKGNAME</span>
+<span class="nv">$ </span>python2.5 setup.py install
+</pre></div>
+<p>This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
+<strong>strongly</strong> suggest you seek binaries for your platform.  If they are not
+available, I recommend you read the <tt class="docutils literal"><span class="pre">INSTALL</span></tt> file and follow its directions
+closely.</p>
+</div>
+</div>
+</div>
+
+
+          </div>
+        </div>
+      </div>
+      <div class="sidebar">
+        <div class="sidebarwrapper">
+            <h3>Table Of Contents</h3>
+            <ul>
+<li><a class="reference" href="">Getting Started</a><ul>
+<li><a class="reference" href="#maintained-installations">Maintained Installations</a><ul>
+<li><a class="reference" href="#datastar-sdsc">DataStar (SDSC)</a></li>
+<li><a class="reference" href="#orange-and-red-slac">Orange and Red (SLAC)</a></li>
+</ul>
+</li>
+<li><a class="reference" href="#binary-packages">Binary Packages</a></li>
+<li><a class="reference" href="#installing-from-source">Installing From Source</a><ul>
+<li><a class="reference" href="#prerequisites-for-yt">Prerequisites for yt</a></li>
+<li><a class="reference" href="#installing-the-necessary-packages">Installing the Necessary Packages</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+
+            <h4>Previous topic</h4>
+            <p class="topless"><a href="intro.html" title="previous chapter">Introduction</a></p>
+            <h4>Next topic</h4>
+            <p class="topless"><a href="tutorial/index.html" title="next chapter">A Short Tutorial</a></p>
+            <h3>This Page</h3>
+            <ul class="this-page-menu">
+              <li><a href="_sources/getting_started.txt">Show Source</a></li>
+            </ul>
+            <h3>Quick search</h3>
+            <form class="search" action="search.html" method="get">
+              <input type="text" name="q" size="18" /> <input type="submit" value="Go" />
+              <input type="hidden" name="check_keywords" value="yes" />
+              <input type="hidden" name="area" value="default" />
+            </form>
+        </div>
+      </div>
+      <div class="clearer"></div>
+    </div>
+    <div class="related">
+      <h3>Navigation</h3>
+      <ul>
+        <li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
+        <li class="right"><a href="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
+          <li class="right"><a href="tutorial/index.html" title="A Short Tutorial" accesskey="N">next</a> |</li>
+          <li class="right"><a href="intro.html" title="Introduction" accesskey="P">previous</a> |</li>
+    <li><a href="http://yt.enzotools.org/">yt</a> »</li>
+    
+        <li><a href="index.html">yt v0.3-pre documentation</a> »</li>
+
+      </ul>
+    </div>
+    <div class="footer">
+      © Copyright 2008, Matthew J. Turk.
+      Last updated on Jun 16, 2008.
+    </div>
+  </body>
+</html>
\ No newline at end of file

Modified: trunk/doc/build/html/index.html
==============================================================================
--- trunk/doc/build/html/index.html	(original)
+++ trunk/doc/build/html/index.html	Mon Jun 16 14:23:46 2008
@@ -46,8 +46,14 @@
 <li><a class="reference" href="intro.html">Introduction</a><ul>
 <li><a class="reference" href="intro.html#history">History</a></li>
 <li><a class="reference" href="intro.html#what-yt-is-and-is-not">What yt is and is not</a></li>
-<li><a class="reference" href="intro.html#prerequisites-for-yt">Prerequisites for yt</a></li>
-<li><a class="reference" href="intro.html#installing-the-necessary-packages">Installing the Necessary Packages</a></li>
+</ul>
+</li>
+</ul>
+<ul>
+<li><a class="reference" href="getting_started.html">Getting Started</a><ul>
+<li><a class="reference" href="getting_started.html#maintained-installations">Maintained Installations</a></li>
+<li><a class="reference" href="getting_started.html#binary-packages">Binary Packages</a></li>
+<li><a class="reference" href="getting_started.html#installing-from-source">Installing From Source</a></li>
 </ul>
 </li>
 </ul>

Modified: trunk/doc/build/html/intro.html
==============================================================================
--- trunk/doc/build/html/intro.html	(original)
+++ trunk/doc/build/html/intro.html	Mon Jun 16 14:23:46 2008
@@ -18,7 +18,7 @@
     <link rel="index" title="Global index" href="genindex.html" />
     <link rel="search" title="Search" href="search.html" />
     <link rel="top" title="yt v0.3-pre documentation" href="index.html" />
-    <link rel="next" title="A Short Tutorial" href="tutorial/index.html" />
+    <link rel="next" title="Getting Started" href="getting_started.html" />
     <link rel="prev" title="yt Overview" href="index.html" />
   </head>
   <body>
@@ -27,7 +27,7 @@
       <ul>
         <li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
         <li class="right"><a href="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
-          <li class="right"><a href="tutorial/index.html" title="A Short Tutorial" accesskey="N">next</a> |</li>
+          <li class="right"><a href="getting_started.html" title="Getting Started" accesskey="N">next</a> |</li>
           <li class="right"><a href="index.html" title="yt Overview" accesskey="P">previous</a> |</li>
     <li><a href="http://yt.enzotools.org/">yt</a> »</li>
     
@@ -72,54 +72,6 @@
 functionality.</p>
 <p><tt class="docutils literal"><span class="pre">`EXPAND`</span></tt></p>
 </div>
-<div class="section">
-<h2 id="prerequisites-for-yt">Prerequisites for yt<a class="headerlink" href="#prerequisites-for-yt" title="Permalink to this headline">¶</a></h2>
-<p>A driving factor in the development of yt over the months leading to release
-0.3 has been the reduction of dependencies.  To that extent, only a few
-packages are required for the base usage, and a GUI toolkit if you are going to use
-the graphical user interface, Reason.</p>
-<blockquote>
-<ul class="simple">
-<li><a class="reference" href="http://python.org/">Python</a>, at least version 2.4, but preferably 2.5.</li>
-<li><a class="reference" href="http://www.hdfgroup.org/">HDF5</a>, the data storage backend used by Enzo
-and yt (if you can run Enzo, this is already installed!)</li>
-<li><a class="reference" href="http://numpy.scipy.org/">NumPy</a>, the fast numerical backend for Python</li>
-<li><a class="reference" href="http://matplotlib.sf.net/">MatPlotLib</a>, the plotting package</li>
-<li><a class="reference" href="http://www.wxpython.org/">wxPython</a>, the GUI toolkit</li>
-</ul>
-</blockquote>
-<p>(If you are only interested in manipulating data without any graphical plotting
-or interfaces, you only need to install NumPy and Python!)</p>
-</div>
-<div class="section">
-<h2 id="installing-the-necessary-packages">Installing the Necessary Packages<a class="headerlink" href="#installing-the-necessary-packages" title="Permalink to this headline">¶</a></h2>
-<p>Installing Python itself is usually quite simple, and often very fast.  Because
-we’re setting up a small system of packages, even if you have a system-wide
-install of python2.5 it can be easier in some cases to create a local directory
-structure:</p>
-<div class="highlight"><pre><span class="nv">$ </span>tar xvf Python-2.5.2.tar.gz
-<span class="nv">$ </span><span class="nb">cd </span>Python-2.5.2
-<span class="nv">$ </span>./configure --prefix<span class="o">=</span><span class="nv">$HOME</span>/local/
-<span class="nv">$ </span>make install
-</pre></div>
-<p>This will create (if necessary) a directory named local in your home directory,
-along with the necessary subdirectories.  When the executable
-<tt class="docutils literal"><span class="pre">$HOME/lcoal/bin/python2.4</span></tt> is used to install a package, it will install it
-to the <tt class="docutils literal"><span class="pre">$HOME/local/</span></tt> directory structure.</p>
-<p>The python packages are fairly straightforward to install.  The process of
-installing packages in python has been greatly simplified over the last few
-years with the addition of setuptools, but for these particular packages I
-typically recommend installing from source, which for Python packages consists
-of changing to the source directory and issues the command:</p>
-<div class="highlight"><pre><span class="nv">$ </span>tar xvfz <span class="nv">$PKGNAME</span>.tar.gz
-<span class="nv">$ </span><span class="nb">cd</span> <span class="nv">$PKGNAME</span>
-<span class="nv">$ </span>python2.5 setup.py install
-</pre></div>
-<p>This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
-<strong>strongly</strong> suggest you seek binaries for your platform.  If they are not
-available, I recommend you read the <tt class="docutils literal"><span class="pre">INSTALL</span></tt> file and follow its directions
-closely.</p>
-</div>
 </div>
 
 
@@ -133,8 +85,6 @@
 <li><a class="reference" href="">Introduction</a><ul>
 <li><a class="reference" href="#history">History</a></li>
 <li><a class="reference" href="#what-yt-is-and-is-not">What yt is and is not</a></li>
-<li><a class="reference" href="#prerequisites-for-yt">Prerequisites for yt</a></li>
-<li><a class="reference" href="#installing-the-necessary-packages">Installing the Necessary Packages</a></li>
 </ul>
 </li>
 </ul>
@@ -142,7 +92,7 @@
             <h4>Previous topic</h4>
             <p class="topless"><a href="index.html" title="previous chapter">yt Overview</a></p>
             <h4>Next topic</h4>
-            <p class="topless"><a href="tutorial/index.html" title="next chapter">A Short Tutorial</a></p>
+            <p class="topless"><a href="getting_started.html" title="next chapter">Getting Started</a></p>
             <h3>This Page</h3>
             <ul class="this-page-menu">
               <li><a href="_sources/intro.txt">Show Source</a></li>
@@ -162,7 +112,7 @@
       <ul>
         <li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
         <li class="right"><a href="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
-          <li class="right"><a href="tutorial/index.html" title="A Short Tutorial" accesskey="N">next</a> |</li>
+          <li class="right"><a href="getting_started.html" title="Getting Started" accesskey="N">next</a> |</li>
           <li class="right"><a href="index.html" title="yt Overview" accesskey="P">previous</a> |</li>
     <li><a href="http://yt.enzotools.org/">yt</a> »</li>
     

Modified: trunk/doc/build/html/searchindex.json
==============================================================================
--- trunk/doc/build/html/searchindex.json	(original)
+++ trunk/doc/build/html/searchindex.json	Mon Jun 16 14:23:46 2008
@@ -1 +1 @@
-[["extending/running_fortran_routines","cookbook/index","intro","extending/writing_scripts","modules/lagos/outputandhierarchy","index","extending/index","cookbook/extracting_data","extending/using_the_interpreter","modules/lagos/index","extending/analyzing_in_parallel","extending/plugin_file","extending/creating_derived_quantities","tutorial/profiles","tutorial/index","tutorial/projections","tutorial/example_script","faq","tutorial/basic_objects","extending/creating_datatypes","tutorial/derived_fields","cookbook/making_timeseries_plots","extending/creating_derived_fields","tutorial/automated_plotting","cookbook/making_simple_plots","tutorial/getting_started","tutorial/advanced_objects","modules/lagos/basedatatypes"],["Running Fortran Routines","Cookbook","Introduction","Writing Scripts","Native Enzo Data Structures","yt Overview","Extending yt","Extracting Data","Using the Interpreter","yt.lagos - Data Handling and Analysis","Analyzing in Parallel","The Plugin File","Creating Derived Quantities","Profiles","A Short Tutorial","Projections","A Demonstrative Example Script","FAQ","Basic Objects","Creating Datatypes","Derived Fields","Making Timeseries Plots","Creating Derived Fields","Automated Plotting","Making Simple Plots","Getting Started","Advanced Objects","Data Containers"],{"default":[25,17,27,23],"all":[5,7,17,1,25,18,26,27,20,21,13,4,23],"code":[5,17,1,26,25,18,2,27,20,21,13,4],"entropi":[18],"edg":[18,4],"orthogon":[27],"whatev":[25,26],"consum":[15],"gz":[2],"month":[2],"four":[18],"rapid":[17],"prefix":[2,23],"per":[17],"ga":[26],"my_data0001_":[24],"go":[5,17,2,23,25],"follow":[14,24,2],"disk":[14,26,27,25],"exntes":[17],"my_profil":[13],"morpholog":[15],"hold":[4],"depend":[2],"auspic":[2],"zone":[27,20],"electron_fract":[20],"elsewher":[24,7],"send":[17],"0":[17,16,7,24,26,25,18,2,27,20,21,13,4,23,15],"tracker":[17],"under":[17,2],"sens":[2],"extract_region":[26,27],"get_field_paramet":[27],"digit":[17],"sourc":[26,18,2,27,20],"log_spac":[27],"mpc":[24,23,26],"straightforward":[2],"far":[17],"execut":[2],"faq":[5,17],"my_cube_dens":[7],"uncl":[17],"volum":[13,17],"indispens":[17],"got":[23],"veri":[18,24,2,15,20],"untouch":[27],"ticket":[17],"exact":[18],"relev":[4],"cool":[17,26],"recip":[24],"dim":[27,7],"info":[18],"level":[27,4],"did":[25],"complic":[14,1,21,20],"gui":[2],"fakegridforparticl":[27],"list":[17,27,7,26],"iter":[21,27],"try":[18,23],"vector":[26,27],"small":[2,27],"particularli":[17],"refer":[21],"prepar":[26,27],"dir":[25],"pleas":[17],"upper":[13],"height":[27],"flush_data":[27],"slower":[13,2],"dimens":[13,26],"direct":[2,27,15],"d":[17],"fulli":[2,26],"across":[17,15],"second":[18,17,26],"pressur":[18],"design":[5,2,6],"pass":[18,27],"rectangular":[18,27],"add_slic":[24,23,16],"append":[21],"univers":[2],"even":[13,2,15,26],"index":[5,18,4,27,23],"what":[5,17,26,25,18,2,20,13],"compar":[7],"section":[25,18,17,1],"abl":[25,13],"while":[23],"uniform":[27],"max_po":[21],"delet":[21],"version":[13,2,17],"intersect":[4],"basic":[5,18,27,14],"new":[17,24,25,18,26,27,13],"ever":[7],"method":[7,17,25,26,27,13,2],"loglog":[21,13],"movement":[21],"full":[15],"deriv":[5,6,14,25,18,26,27,20,12,22],"whose":[27],"idiom":[24],"gener":[15,7,17,25,2,27,20,21,13,4],"v":[21,16,25],"here":[15,24,25,18,26,27,20,13],"satisfi":[27],"met":[17],"shouldn":[25],"electron_dens":[20],"free":[17,2,27],"l_vec":[26],"inher":[25],"unpack":[25],"locat":[25,4,27],"100":[24,16],"becom":[13,20],"sinc":[17],"interpret":[5,6,8,17,25,18,2],"suggest":[2],"box":[14,18,25],"clear_al":[4],"search":[5],"convers":[13,20],"ahead":[17],"hdf5":[25,2,15,7],"plotter":[13,7],"k":[13],"30":[21],"loop":[24],"chang":[13,2,27,17],"commonli":[25],"portabl":[17],"pytabl":[7],"via":[21,4,27],"love":[17],"although":[13,2,18,7],"slicer":[17],"appli":[24,26],"modul":[5,1,25],"prefer":[2],"centerofmass":[26],"filenam":[17,24,4,23,7],"api":[13],"instal":[5,15,7,25,2,13],"unit":[16,24,25,26,27,20,13,4,23],"plot":[5,15,7,14,24,1,26,18,2,27,21,13,23],"my_pair":[24],"from":[5,7,17,26,25,18,2,27,20,13,4,23],"describ":[26,4],"would":[26,27],"commun":[17],"leftedg":[4],"doubl":[17],"two":[14,15,17,25,26,20,13],"next":[25,18,17,15,26],"implic":[18],"few":[21,24,2],"handler":[25],"call":[15,7,25,27,20,13,4,23],"recommend":[17,2],"taken":[17],"inner":[24],"oftentim":[7],"use_pbar":[27],"type":[13,26,4,18,20],"tell":[13,26,20],"more":[14,17,5,24,1,18,26,27,20,21,13,4,22,23],"hippodraw":[2],"desir":[21,2],"05i":[24],"averageddens":[20],"python":[5,17,1,25,2,21],"share":[17],"ylabel":[13],"line":[13,17,15,26],"it":[17,15,16,24,26,25,18,2,27,20,21,13,4,23],"visual":[13,2],"indic":[5,14,18,26,27,4],"find_ray_grid":[4],"particular":[2,4],"91":[17],"enzocuttingplanebas":[27],"effort":[21,7],"easiest":[17],"me":[17],"none":[27,13,4],"graphic":[2],"retriev":[13],"f":[21,7],"prof":[13,2],"setup":[2],"work":[14,18,2,16,25],"uniqu":[26],"histori":[5,2],"kunz":[2],"itself":[25,2,27],"can":[5,17,15,7,14,24,1,26,25,18,2,27,20,21,13,22,23],"enzoslic":[27,23],"learn":[5,17],"rais":[18],"purpos":[25,27],"root":[7],"could":[21,13,26],"obliqu":[27],"control":[25,13,20],"nearest":[27],"explor":[13,17],"tar":[2],"give":[25,17],"process":[25,2,20,21,4,23],"staticoutput":[25],"mayb":[18,4,23],"in":[5,17,16,7,6,24,10,25,18,2,27,20,21,13,26,4,22,23,15],"smoothed_covering_grid":[7],"datafil":[4],"accept":[13,26,27,7,20],"topic":[27],"sphere":[25,18,26,27,21,13,4],"minimum":[4],"proprietari":[2],"unavail":[17],"want":[7,25,18,26,13,4,23],"everi":[27,20],"serial":[13,17],"fields_to_plot":[16],"string":[17,4,20],"alwai":[18,4,20],"cours":[17,2,16],"multipl":[27,17,24,1],"goal":[27],"divid":[13,27],"rather":[2],"anoth":[21,7],"tab":[16],"1":[17,16,7,24,18,26,20,13,4,23],"how":[5,17,1,25,18,26,27,13,23],"anyon":[21],"confin":[27],"pure":[2],"subdirectori":[2],"answer":[17],"instead":[13],"bit":[14,13,1],"simpl":[5,17,15,14,24,1,26,25,2,20,21,13],"circular":[21],"minimumt":[26],"s2plot":[13],"my_output":[21],"overridden":[27],"max":[27],"dive":[17],"after":[23],"lab":[2],"befor":[27,4],"wrong":[5,17],"mesh":[5,2],"okai":[18,20],"support":[5,17],"contribut":[17,26],"discard":[27],"mai":[21],"such":[17,27],"volumerendering3dprofil":[13],"associ":[21,26,27,23,25],"parallel":[5,14,15,6,10],"averag":[21,13],"a":[5,17,7,16,14,24,1,26,25,18,2,27,20,21,13,4,23,15],"sy":[16],"short":[5,14],"attempt":[27,17,4,26],"interpol":[27],"bind":[13],"sp":[21],"enzoorthoraybas":[27],"or":[7,17,26,25,2,27,20,13,4,23],"caus":[17,15],"inform":[17,25,26,27,21,4,23],"switch":[24],"cannot":[13,27,15],"combin":[17,1],"spheric":[13],"allow":[17,20],"cylind":[27],"callabl":[26],"mechan":[25],"1000":[24,16],"order":[13,27,23,16],"talk":[18],"beazlei":[17],"__":[25],"origin":[2,27,26],"behav":[26],"frontend":[2],"help":[5,18,17],"intimid":[1],"over":[21,24,2,27],"move":[25,4,27],"becaus":[24,2,15,20],"galaxi":[26],"graduat":[2],"paper":[17],"through":[14,7,26,2,27,13,23],"affect":[27],"hierarchi":[14,15,17,25,18,4,23],"effici":[24],"flexibl":[6],"vari":[24],"paramet":[24,15,17,25,26,27,4,23],"24":[13],"write":[3,17,21,6,5],"style":[27],"le":[27],"outer":[24],"utilitarian":[2],"lo":[2],"get_sourc":[18],"platform":[2],"particle_typ":[4],"famou":[27],"comprehens":[2],"mail":[17],"of":[5,17,7,16,14,24,1,26,25,18,2,27,20,21,13,4,22,23,15],"main":[20],"might":[25,20],"pixel":[27],"connection_pool":[27],"then":[15,24,25,26,27,20,13,23],"them":[15,17,25,26,27,13,23],"good":[25,17],"var1":[21],"partiview":[4],"thei":[15,17,26,18,2,27,20,13,23],"var2":[21],"handl":[5,24,9,25],"handi":[25],"initi":[13,27],"nation":[2],"dat":[21],"framework":[2],"binnedprofile3d":[13],"clear_derived_quant":[4],"not":[5,14,17,26,25,18,2,27,20,21,13,4],"now":[17,25,18,26,20,13,23],"yt":[5,17,7,16,14,6,24,1,9,26,25,2,27,21,13,4,22,23,15],"introduct":[5,2],"name":[5,24,17,25,2,27,20,4],"parameterfil":[4],"anyth":[13,20],"drop":[17],"l":[4],"galaxytwo":[26],"myprofil":[13],"easili":[25,24],"achiev":[27],"kpc":[21,13,24,23],"each":[16,25,26,27,21,13,23],"found":[17],"collaps":[26],"side":[27],"mean":[25,13,26,20],"compil":[17],"domain":[18],"export_boxes_pv":[4],"somename_15kpc":[23],"replac":[27],"individu":[13],"idea":[23],"ensur":[24],"realli":[25,18],"field_paramet":[27],"wrap":[13],"gird":[4],"static":[13],"connect":[27],"my_cub":[7],"our":[7,24,25,18,26,27,20,13],"happen":[20],"differ":[25,13,24,23,7],"extract":[5,7,14,1,26,13],"reduct":[2],"out":[17,1,25,18,26,27,21,4],"variabl":[21,13,20],"has_field_paramet":[27],"accomplish":[15],"space":[13],"routin":[5,0,6],"open":[21,17,24,25],"ha":[5,7,6,17,25,2,27,20,4,23],"crucial":[20],"primari":[2,27],"profil":[5,14,25,26,13,23],"re":[17,2,27,26],"_convertdensitycub":[20],"adapt":[5,2],"rel":[17],"reader":[2],"print":[17,25,18,20,13,4,23],"rm":[13,20],"current":[27],"forth":[18,27],"math":[17,20],"common":[14,1],"dataset":[21,4,27],"linear":[2],"insid":[21,18,17],"advanc":[5,26,1,14],"manipul":[25,2,23],"argu":[21],"argv":[16],"standard":[13,1],"reason":[2],"base":[17,9,26,2,27,13,4,23],"believ":[2],"dictionari":[26,27],"usual":[2,27],"releas":[17,2],"org":[17],"indexboundari":[4],"care":[23],"activedimens":[25],"wai":[14,24,15,7,17,25,18,26,20,22,23],"g":[13,20],"launch":[25],"angl":[27],"veloc":[13,24],"traceback":[17],"ask":[25,13,17,18,15],"keep":[13,16],"filter":[4],"thing":[24,7,17,25,18,27,20,21],"length":[13,23],"plane":[14,15,18,26,27,23],"turk":[2],"due":[27],"w":[21,24,7,16],"my_data":[21,24],"512":[7],"clump":[14,26],"think":[21,4],"first":[15,17,25,18,26,20,13,4,23],"oper":[25,18,26,27],"softwar":[2,15],"rang":[21,16],"finest":[27],"export_particles_pb":[4],"suffix":[23],"directli":[27,25,13,4,18],"onc":[13,15],"arrai":[26,4,7],"qualiti":[7],"number":[27,13,17,18,15],"yourself":[25],"restrict":[5,18,17,27],"1e2":[13],"1e5":[13],"messag":[17],"divv":[20],"set_field_paramet":[27],"facil":[23],"angular":[26],"fanci":[24],"size":[4],"lazy_read":[13,26],"given":[15,25,26,27,21,4],"my_region":[18,20],"script":[14,16,6,5,1,25,3],"data":[5,16,7,17,1,9,26,25,18,2,27,20,21,13,4,23],"interact":[14],"system":[17,2,26],"least":[2],"attach":[17],"cumul":[27],"master":[17],"demonstr":[5,16,14],"statement":[26],"tom":[2],"1e":[13,26],"conveni":[25],"enzogrid":[4],"easier":[25,2,23],"friend":[25,18],"too":[26,24,20],"my_width":[16],"option":[27,13,4],"enzocuttingplan":[27],"that":[14,17,16,7,24,1,26,25,18,2,27,20,21,13,4,23,15],"namespac":[25],"baryon":[27],"tool":[23],"copi":[17],"setuptool":[2],"circumst":[13],"specifi":[5,17,27],"max_val":[27],"base_region":[27],"task":[14,1,15,16],"pars":[25,4],"enzoproj":[27],"mostli":[2,26],"conserv":[13,26],"alreadi":[26,2,27,15,20],"find_point":[4],"than":[21,24,2,27,26],"png":[13,23],"10":[21,18,24,16],"gal1_region":[26],"15":[23],"keyword":[4],"16":[13],"provid":[17,27],"cosmologycurrenttim":[21],"rightedg":[4],"prof2d":[13],"structur":[5,2,4,27,9],"min_val":[27],"project":[5,15,14,17,25,18,27,23],"i":[5,15,16,17,25,2,27,21,13,23],"r":[13,20],"xlabel":[13],"store":[21,13,15,25],"entri":[6],"posit":[27,4],"video":[17],"other":[15,1,25,18,26,27,20,21],"typic":[18,2,27],"seri":[21,4],"and":[5,17,7,16,14,24,1,9,26,25,18,2,27,20,21,13,4,23,15],"analysi":[5,16,17,9,2,21],"sai":[26],"fashion":[26],"abov":[13,23],"terribl":[27],"radial":[13],"mind":[13],"anywher":[13],"enzocoveringgrid":[27],"packag":[5,15,7,14,2,21],"width":[24,1,23],"my_val":[16],"have":[17,16,7,24,1,26,25,18,2,27,20,21,13,23,15],"tabl":[5,7],"need":[17,26,25,18,2,27,20,13],"my":[5,17,2,16],"get_smallest_dx":[4],"slac":[2],"imagin":[21,26],"engin":[15],"relationship":[25,17],"zero":[18],"messeng":[17],"enzo1ddata":[27],"latter":[26],"h2i_fract":[23,16],"snow":[17],"add_cutting_plan":[26],"for":[5,17,15,16,24,26,25,18,2,27,20,21,13,4,23],"note":[15,7,24,1,25,26,27,20,21,13,4,23],"mix":[26],"exampl":[5,16,14,26,20,13],"take":[25,13,27,23],"which":[17,7,24,1,26,25,18,2,27,20,13,4,22],"numberdens":[16],"so":[14,15,17,25,18,26,27,20,13,23],"properti":[25,26,23],"singl":[15,24,1,25,4,23],"weightedaveragequant":[21,26],"begin":[25],"unless":[27],"distribut":[13,15],"though":[18,17],"multipli":[27],"licens":[17],"to":[5,17,7,16,14,6,24,1,26,25,18,2,27,20,21,13,4,23,15],"crash":[17],"most":[24,27,23,20],"gravitation":[26],"phase":[25],"kiloparsec":[23],"extractedregion":[27],"homepag":[17],"why":[5,17],"num_ghost_zon":[27],"don":[21,18,23,20],"binari":[2],"year":[21,2],"clear":[27,13,4],"later":[25,18,23],"obtus":[1],"drive":[2],"km":[23],"doe":[18,4],"declar":[24],"fiel":[20],"place":[17,27],"determin":[25,26],"axi":[5,15,17,18,27,4,23],"max_rho":[21],"sum":[27],"fact":[2,20],"criteria":[26],"has_kei":[27],"somewhat":[2],"show":[25],"text":[4,23,7],"radiu":[27,13,4],"radii":[27],"enzodata":[27],"write_out":[7],"identifi":[21],"find":[21,17,25],"ground":[2],"absolut":[17],"onli":[15,17,26,18,2,27,20,13],"inlin":[25],"print_stat":[4,16],"pkgname":[2],"pretti":[25,20],"with":[5,17,15,7,14,6,24,1,26,25,18,2,27,20,21,13,4,23],"enzoregionbas":[27],"indices_we_w":[26],"figur":[17,1],"should":[21,4,7,20],"configur":[17,2],"analyz":[5,2,6,10],"factor":[27,13,2,4],"govern":[20],"local":[25,13,2],"offici":[17],"child_indic":[4],"meant":[25],"do":[5,17,15,24,1,25,18,26,27,20,21,13],"cube":[7,20],"nearli":[13],"variou":[26],"get":[5,14,17,25,18,26,27,13,4,23],"there":[5,15,17,1,26,27,20,13,23],"simplest":[24,15],"autom":[5,13,23,14],"nativ":[5,4,9,25],"galaxyon":[26],"_densitycub":[20],"add_phase_spher":[13,23],"dx":[25],"128":[13],"2":[17,24,18,2,13,23],"requir":[17,2,27,20],"radiuskpc":[13],"reveal":[15],"scene":[26],"enabl":[2,27],"organ":[23],"my_data0001":[25,24],"h":[16,7,25,18,26,21,13,15],"convert_funct":[20],"possibl":[21,26],"paint_grid":[27],"coord":[27,4],"patch":[17],"remot":[13],"float":[27,4],"stuff":[25,18,20],"integr":[15],"mediat":[25],"contain":[5,9,26,27,4,23],"x":[17,24,18,27,13,4],"grab":[25,13,18,23],"3d":[9,25,18,26,27,13],"where":[5,17,25,18,26,27,20,13,23],"remov":[21],"baryonfield":[26],"commod":[2],"enzostaticoutput":[16,24,25,27,21,4],"set":[24,7,17,25,2,27,20,4,23],"dump":[7],"isbound":[26],"right_edg":[27,7],"displai":[13,26],"datatyp":[5,27,19,23,6],"get_enzo_grid":[4],"see":[17,26,27,20,13,4],"result":[25,17],"enzospherebas":[27],"close":[2,7],"improv":[17,2],"contour":[27],"particl":[27,4],"statu":[26],"still":[23],"three":[14,13,27,20],"onto":[27],"inconveni":[13],"record":[17],"speed":[17],"someth":[5,17,15,25],"plotcollect":[21,13,24,23,16],"web":[17],"3":[16,7,17,26,2,27,20,13],"smallest":[4],"between":[25,18,17,4,27],"import":[16,1,25,26,21,13,23],"neither":[13],"1d":[27,9],"email":[17],"xvf":[2],"we":[14,24,26,25,18,2,27,20,13,4,23],"never":[27,4],"bound":[13,26],"kei":[27,4,20],"25":[26],"numer":[2],"vrc":[13],"extens":[2],"entir":[18,17,27],"data_styl":[4],"len":[21],"extent":[2],"group":[23],"argument":[13,27],"come":[25],"addit":[2,23],"both":[27],"c":[21,17,2,25],"z":[13,17,4,18],"rsun":[16],"add_field":[13,20],"clf":[21],"binnedprofile2d":[13],"immers":[2],"against":[21,7],"enzotool":[17],"s":[5,17,15,16,24,1,25,18,26,20,13,4,23],"tutori":[25,5,17,27,14],"datafield":[4],"logic":[27],"let":[25,18,17,23,26],"com":[17,26],"fix":[18,24,27],"enzo":[5,17,2,4,9],"pre":[25,26,23],"acceler":[2],"simpli":[13,24,4,15],"author":[2],"cm":[13,23,20],"point":[6,25,26,27,21,4],"instanti":[25,13,26,4],"overview":[5],"cg":[27,20],"switch_field":[24,16],"densiti":[16,7,24,25,18,26,27,20,21,13,23],"walk":[14],"enzogridcollect":[27],"written":[25,2],"param":[4],"suppli":[27,13,26,4,23],"respect":[18],"guid":[17],"assum":[25,1],"along":[15,17,2,27,13,4,23],"backend":[17,2],"sever":[17,15,6,26],"quit":[2],"ultim":[27],"extrema":[13],"creat":[5,17,6,16,24,21,26,2,19,27,20,12,13,4,22,23],"coupl":[18,17,20],"my_slic":[18],"addition":[13,17],"altogeth":[21],"py":[2],"numpi":[17,2,4,26],"compos":[20],"been":[7,6,17,26,2,21,4],"accessor":[26],"pb":[4],"pc":[15,16,24,26,13,23],"beer":[2],"much":[17,15,23],"pf":[16,7,24,27,21,4],"valu":[25,18,27,21,13,4],"interest":[17,25,26,13,2,23],"modif":[27],"popul":[26],"my_grid":[25,18],"storedbinnedprofile3d":[13],"remaind":[25,27],"0001":[13],"spit":[25],"xvfz":[2],"notori":[21],"convert":[13,27,20],"ani":[5,7,17,26,2,27,13,23],"coordin":[27,18,26,4],"understand":[23],"child":[17,27],"last":[13,2,20],"rai":[4],"densitycub":[20],"those":[21,13,27,23,25],"case":[13,2,27,15,17],"strongli":[2],"ident":[13,26],"max_level":[27],"look":[25,13,4,18],"gnu":[17],"these":[5,15,7,17,1,26,2,27,20,13],"enzogridbas":[4],"align":[27],"plugin":[5,11,6],"mpi4pi":[15],"will":[15,7,17,1,26,25,18,2,27,20,21,13,4,23],"defin":[14,24,25,26,27,20],"calcul":[18],"ar":[5,17,15,24,26,25,18,2,27,20,21,13,22,23],"behavior":[17,20],"error":[17,4],"report":[17],"neighbor":[27],"invoc":[17],"howev":[15,7,26,2,27,20,21,13,23],"num_level":[27],"pack":[25],"ve":[16,17,18,26,13,23],"cell":[27,4],"stdout":[4],"set_attr":[4],"is":[5,17,15,16,24,26,25,18,2,27,20,21,13,4,23],"toolkit":[5,2],"attribut":[25,7],"kwarg":[27],"default_valu":[27],"substanti":[2],"virtu":[2],"fn":[16],"return":[25,18,26,27,20,4],"inspector":[18],"mani":[14,17,25],"primit":[24],"id":[4],"feed":[13,26,18,23],"if":[7,17,26,25,18,2,27,21,13,4,23],"parent":[17,4],"subscrib":[17],"proport":[27],"develop":[17,2],"etc":[21],"perform":[14],"seek":[2],"make":[5,17,7,24,1,25,2,21,13],"save_data":[4],"same":[18,26,27,20,13,23],"check":[26,17,4,27,20],"member":[27],"matthew":[2],"epoch":[17],"instanc":[27,4,23],"fido":[21],"9":[20],"algorithm":[2],"grid_list":[27],"document":[21],"pan":[15],"complet":[2],"enzoprojbas":[27],"http":[17],"find_max":[21,4,25],"5e":[21],"bonus":[4],"nest":[7],"assist":[1],"driven":[15],"fairli":[21,2,1,26],"001":[26],"binnedprofile1d":[13],"user":[17,2],"applic":[17,7],"refin":[5,2],"extern":[25],"store_profil":[13],"studi":[2,27],"expand":[2],"built":[18,2],"lower":[13],"appropri":[27,26,4,15],"off":[25,17],"center":[26,25,18,2,27,13,4],"scale":[27,4],"my_unit":[16],"add_phase_object":[13],"thu":[17,24,27],"enzocylinderbas":[27],"well":[17,25,18,26,21,13],"inherit":[27],"thought":[27],"without":[27,2,4],"command":[25,17,24,2,26],"expens":[25],"thi":[14,7,17,1,26,25,18,2,27,20,21,13,4],"weight_field":[27,15,23],"y":[27,18,17,4],"particle_index":[4],"everyth":[18,26,20],"dimension":[14,13,27],"left":[27,18,4],"explan":[13,20],"load":[25,13,4],"protocol":[18,27,20],"just":[25,26,4,20],"object":[5,15,7,14,17,25,18,26,27,20,13,4,23],"savefig":[13],"pylab":[21,13],"obtain":[13,27],"select_grid":[27,4],"select":[27,16],"extract_connected_set":[27],"new_prof":[13],"behind":[17,26],"touch":[25],"depart":[2],"paul":[2],"32":[13],"cellvolum":[13],"herarchi":[18],"languag":[2],"mandat":[27],"cut":[14,15,18,26,27,23],"binned2dprofil":[26],"easi":[25,17],"also":[7,17,26,25,18,2,20,21,13,23],"except":[18,27],"littl":[23],"the":[1,2,4,5,6,7,8,23,13,14,15,16,17,18,20,21,22,11,24,25,26,27],"identif":[17],"fortran":[5,0,6],"add":[13,24,23],"n":[21],"4":[18,2,27,26],"gal1_mix":[26],"timestep":[25],"reslic":[27],"input":[27],"save":[24,4,23,16],"momentum":[17,26],"raven":[17,15,16,24,26,13,23],"bin":[13,2],"book":[17],"fortun":[25],"around":[18,23],"enzo2ddata":[27],"format":[4],"read":[7,26,25,2,27,13,4],"big":[13],"swig":[4],"spatial":[25],"piec":[17],"temperatur":[15,16,24,25,26,21,13,23],"grid":[14,17,25,18,26,27,20,13,4],"know":[25,18,17,27,23],"wide":[2,15],"part":[23,20],"cd":[2],"paint":[27],"python2":[25,2],"avenu":[17],"like":[15,25,18,26,27,13],"specif":[17],"arbitrari":[27,4,15],"manual":[25,13,1,23],"zoom":[24,15],"integ":[17,27],"collect":[14,17,24,23,26],"pcolormesh":[13],"either":[25,17,27],"view":[27,4],"region":[14,18,26,27,20,13,4],"output":[21,17,4,16,25],"architectur":[17],"page":[5],"openfil":[7],"right":[25,18,17,4,26],"often":[18,2,16],"deal":[27,15],"simplifi":[2],"creation":[17,24,20],"some":[14,17,24,1,26,25,18,2,20,13,4,23],"back":[25,13,26,4,27],"finestlevel":[4],"wxpython":[2],"export":[2,4,7],"interpolate_discret":[27],"home":[2],"showmedo":[17],"guess":[26,27],"librari":[2],"2d":[27,9],"my_data0001_100kpc":[24],"slice":[14,15,24,18,26,27,20,21,4,23],"implement":[2,27],"find_sphere_grid":[4],"alamo":[2],"angularmomentumvector":[26],"leak":[21],"enzoslicebas":[27],"definit":[25],"best":[17],"evolv":[2],"proj":[15],"necessari":[5,2],"content":[5,17,14],"notabl":[26],"t":[17,25,18,20,21,23],"machin":[13],"be":[14,17,15,7,6,24,1,26,25,2,27,20,21,13,4],"plu":[20],"knew":[17],"run":[5,16,6,0,2,21,13],"power":[27,22,20],"timeseri":[5,1,21],"inspect":[13],"usag":[2],"fed":[26],"els":[25],"_fraction":[20],"presuppos":[26],"left_edg":[27,7],"prerequisit":[5,2,25],"posses":[25],"keeper":[17],"by":[15,17,26,25,18,2,27,13,4],"_":[25],"simpler":[21],"on":[5,17,15,16,14,24,26,25,18,2,27,20,21,13,4,22,23],"about":[5,17,25,18,26,20,21,4],"greatli":[2],"get_posit":[4],"transpos":[13],"freedom":[2],"cellmassmsun":[21,13,26],"memori":[21,13,26,4,27],"slightli":[13],"currenttimeidentifi":[17],"greater":[26],"simul":[25,4,16],"shift":[18,27],"issu":[2],"done":[21,18,17,27,26],"act":[26,27,23],"fals":[17,4],"ti":[15],"processor":[15],"block":[23],"subset":[26,4],"own":[25,20],"enzorun":[4],"their":[25,27],"primarili":[4],"h2":[13],"into":[14,17,7,24,1,26,25,2,27,13],"within":[25,4,27],"encod":[24],"daunt":[14],"automat":[13,27,15,23,20],"h5":[7],"down":[27,4],"resili":[21],"04i":[21],"strip":[4],"enzohierarchi":[25,4],"abel":[2],"child_mask":[4],"storag":[2],"your":[17,25,2,20,21,13],"cutting_plan":[26],"manag":[5],"seen":[18,26],"weight":[13,27,15],"val":[27],"opengl":[13],"wa":[25,2,26],"themat":[23],"question":[18],"transform":[26],"fast":[2,20],"class":[27,4],"avail":[15,17,26,18,2,27,20,21,13],"start":[5,14,17,25,18,26],"reli":[2],"lago":[5,17,16,24,9,25,18,27,20,21,13,4],"interfac":[2,4,23,26],"includ":[16,26,27,20,13,23],"fraction":[13],"get_box_grid":[4],"resolut":[18,27,15],"strict":[20],"function":[26,13,2,27,20],"reduc":[2,27],"footwork":[24],"an":[5,17,15,7,24,26,25,18,2,27,20,21,13,4],"enough":[18],"forc":[4],"tupl":[25,27],"cellmass":[15,23],"keyerror":[27],"but":[17,24,1,25,18,2,27,20,21,13,23],"clear_data":[27],"lcoal":[2],"eas":[2],"mitig":[2],"true":[27,13,4],"bug":[17],"def":[20],"longer":[13],"extend":[5,17,2,22,6],"throw":[27,4],"made":[21,17,27,7],"evolut":[21],"consist":[24,2],"stanford":[2],"whether":[13,26],"access":[15,7,17,25,26,27,20,13,4,23],"smooth":[7],"maximum":[25,4],"us":[5,15,6,14,8,17,26,25,18,2,27,20,21,13,4],"lead":[17,2,1],"insert":[27],"below":[27,16],"otherwis":[27,4],"problem":[17,15,26],"enzo3ddata":[27],"tracer":[26],"gone":[5,17],"featur":[2],"ad":[14,13,26,4,23],"_densiti":[20],"up":[5,17,26,25,2,27,20],"int":[4],"cover":[13,27],"dure":[2,16,26],"flush":[26],"am":[2],"arbitrarili":[27],"repres":[17,27],"extractedregionbas":[27],"as":[14,15,16,17,26,25,18,2,27,20,21,13,4,23],"clever":[2],"exist":[25,4,27,23],"at":[17,7,24,1,26,25,2,27,21,13,4],"file":[5,17,15,7,6,24,25,2,11,21,4,23],"request":[20],"ax":[18,17,23],"find_slice_grid":[4],"quantiti":[5,15,6,14,26,27,12,21],"energi":[2],"probabl":[17],"incorrect":[17],"again":[13],"collid":[26],"no":[27,13,2,4],"find_min":[4],"todo":[4],"get_data":[27,4],"when":[26,21,2,23,20],"end":[26],"field":[5,16,7,14,6,24,1,25,18,26,27,20,13,4,22,23],"prism":[18,27],"valid":[20],"5":[25,13,2,18,26],"futur":[13,17],"normal":[26,27],"varieti":[15],"test":[18],"avg_t":[21,26],"you":[17,15,7,24,1,26,25,18,2,20,21,13,4,22,23],"amax":[13],"mock":[27],"derivedfield":[20],"node":[4,15,7],"draw":[27],"ll":[14,13,18,25],"star":[4],"findmax":[4],"affili":[4],"createarrai":[7],"enzoregion":[27],"m":[25],"increas":[2],"push":[27],"meaning":[17],"public":[17,7],"log":[13,17],"consid":[24,27],"intepret":[14],"au":[24,23,16],"matplotlib":[13,2],"ghost":[27,20],"receiv":[26],"set_width":[24,23,16],"faster":[13],"furthermor":[25],"scientif":[17],"directori":[2],"suit":[17],"lot":[17,1,23,20],"add_project":[15,23],"u":[24,16],"time":[15,17,1,2,21,4,23],"alright":[13],"fieldinfo":[18,20],"cookbook":[5,1],"stick":[25,20]}]
\ No newline at end of file
+[["extending/running_fortran_routines","cookbook/index","intro","extending/writing_scripts","modules/lagos/outputandhierarchy","index","extending/index","cookbook/extracting_data","extending/using_the_interpreter","modules/lagos/index","extending/analyzing_in_parallel","extending/plugin_file","extending/creating_derived_fields","extending/creating_derived_quantities","tutorial/profiles","tutorial/index","tutorial/projections","tutorial/example_script","faq","tutorial/basic_objects","extending/creating_datatypes","tutorial/derived_fields","cookbook/making_timeseries_plots","getting_started","tutorial/automated_plotting","cookbook/making_simple_plots","tutorial/getting_started","tutorial/advanced_objects","modules/lagos/basedatatypes"],["Running Fortran Routines","Cookbook","Introduction","Writing Scripts","Native Enzo Data Structures","yt Overview","Extending yt","Extracting Data","Using the Interpreter","yt.lagos - Data Handling and Analysis","Analyzing in Parallel","The Plugin File","Creating Derived Fields","Creating Derived Quantities","Profiles","A Short Tutorial","Projections","A Demonstrative Example Script","FAQ","Basic Objects","Creating Datatypes","Derived Fields","Making Timeseries Plots","Getting Started","Automated Plotting","Making Simple Plots","Getting Started","Advanced Objects","Data Containers"],{"default":[26,18,28,24],"all":[5,7,18,1,26,19,27,28,21,22,14,4,24],"code":[5,18,1,27,26,19,2,28,21,22,14,4],"entropi":[19],"edg":[19,4],"orthogon":[28],"whatev":[26,27],"global":[23],"gz":[23],"month":[23],"four":[19],"rapid":[18],"prefix":[23,24],"per":[18],"ga":[27],"my_data0001_":[25],"go":[5,18,23,24,26],"follow":[15,25,23],"disk":[15,27,28,26],"exntes":[18],"my_profil":[14],"locat":[26,4,28],"morpholog":[16],"hold":[4],"depend":[2,23],"auspic":[2],"zone":[28,21],"electron_fract":[21],"elsewher":[25,7],"send":[18],"0":[18,17,7,25,26,19,27,28,21,22,14,4,23,24,16],"tracker":[18],"under":[18,2],"sens":[2],"extract_region":[27,28],"get_field_paramet":[28],"digit":[18],"sourc":[5,19,27,28,21,23],"log_spac":[28],"mpc":[25,24,27],"straightforward":[23],"without":[28,4,23],"far":[18],"execut":[23],"faq":[5,18],"my_cube_dens":[7],"uncl":[18],"volum":[14,18],"indispens":[18],"got":[24],"veri":[23,19,25,16,21],"untouch":[28],"ticket":[18],"exact":[19],"relev":[4],"cool":[18,27],"recip":[25],"dim":[28,7],"info":[19],"level":[28,4],"did":[26],"complic":[15,1,22,21],"gui":[23],"fakegridforparticl":[28],"list":[18,28,7,27],"iter":[22,28],"try":[19,23,24],"p":[23],"vector":[27,28],"math":[18,21],"small":[28,23],"particularli":[18],"refer":[22],"prepar":[27,28],"dir":[26],"pleas":[18],"upper":[14],"height":[28],"flush_data":[28],"slower":[14,2],"dimens":[14,27],"direct":[28,16,23],"d":[18],"fulli":[2,27],"across":[18,16],"second":[19,18,27],"pressur":[19],"design":[5,2,6],"pass":[19,28],"rectangular":[19,28],"add_slic":[25,24,17],"append":[22],"univers":[2],"even":[14,27,16,23],"index":[5,19,4,28,24],"what":[5,18,27,26,19,2,21,14],"compar":[7],"section":[26,19,18,1],"abl":[26,14],"while":[24],"uniform":[28],"max_po":[22],"delet":[22],"version":[14,18,23],"intersect":[4],"basic":[5,19,28,15],"new":[18,25,26,19,27,28,14],"ever":[7],"method":[7,18,26,27,28,14,23],"loglog":[22,14],"movement":[22],"full":[16],"deriv":[5,6,15,26,19,27,28,21,13,12],"whose":[28],"idiom":[25],"gener":[16,7,18,26,2,28,21,22,14,4],"v":[22,17,26],"here":[16,25,26,19,27,28,21,14],"satisfi":[28],"met":[18],"shouldn":[26],"electron_dens":[21],"free":[18,2,28],"l_vec":[27],"inher":[26],"unpack":[26],"path":[23],"100":[25,17],"becom":[14,21],"sinc":[18],"interpret":[5,6,8,18,26,19,2],"suggest":[23],"box":[15,19,26],"clear_al":[4],"search":[5],"convers":[14,21],"ahead":[18],"hdf5":[26,16,7,23],"plotter":[14,7],"k":[14],"30":[22],"loop":[25],"implement":[2,28],"commonli":[26],"portabl":[18],"pytabl":[7],"via":[22,4,28],"love":[18],"although":[14,2,19,7],"slicer":[18],"appli":[25,27],"modul":[5,1,26],"prefer":[23],"avenu":[18],"filenam":[18,25,4,24,7],"api":[14],"instal":[5,16,7,26,2,14,23],"unit":[17,25,26,27,28,21,14,4,24],"plot":[5,16,7,15,25,1,27,19,2,28,22,14,23,24],"my_pair":[25],"from":[5,7,18,27,26,19,2,28,21,14,4,23,24],"describ":[27,4],"would":[27,28],"commun":[18],"leftedg":[4],"doubl":[18],"two":[15,16,18,26,27,21,14],"next":[26,19,18,16,27],"datastar":[23],"few":[22,25,23],"handler":[26],"call":[16,7,26,28,21,14,4,23,24],"usr":[23],"recommend":[18,23],"taken":[18],"inner":[25],"oftentim":[7],"use_pbar":[28],"type":[14,27,4,19,21],"tell":[14,27,21],"more":[15,18,5,25,1,19,27,28,21,22,14,4,12,24],"hippodraw":[2],"desir":[22,2],"05i":[25],"averageddens":[21],"python":[5,18,1,26,2,22,23],"share":[18],"ylabel":[14],"line":[14,18,16,27],"it":[18,16,17,25,27,26,19,2,28,21,22,14,4,23,24],"visual":[14,2],"indic":[5,15,19,27,28,4],"find_ray_grid":[4],"particular":[4,23],"91":[18],"enzocuttingplanebas":[28],"effort":[22,7],"easiest":[18],"me":[18],"none":[28,14,4],"graphic":[23],"retriev":[14],"f":[22,7],"prof":[14,2],"setup":[23],"work":[15,17,26,19,2,23],"uniqu":[27],"histori":[5,2],"kunz":[2],"itself":[26,28,23],"can":[5,18,16,7,15,25,1,12,26,19,2,28,21,22,14,27,23,24],"enzoslic":[28,24],"learn":[5,18],"rais":[19],"purpos":[26,28],"root":[7],"could":[22,14,27],"obliqu":[28],"control":[26,14,21],"nearest":[28],"explor":[14,18],"tar":[23],"give":[26,18],"process":[26,21,22,4,23,24],"staticoutput":[26],"mayb":[19,4,24],"in":[5,18,17,7,6,25,10,26,19,2,28,12,21,22,14,27,4,23,24,16],"smoothed_covering_grid":[7],"datafil":[4],"accept":[14,27,28,7,21],"topic":[28],"sphere":[26,19,27,28,22,14,4],"minimum":[4],"proprietari":[2],"unavail":[18],"want":[7,26,19,27,14,4,24],"everi":[28,21],"serial":[14,18],"fields_to_plot":[17],"string":[18,4,21],"alwai":[19,4,21],"cours":[18,2,17],"multipl":[28,18,25,1],"goal":[28],"divid":[14,28],"rather":[2],"anoth":[22,7],"tab":[17],"1":[18,17,7,25,19,27,21,14,4,24],"how":[5,18,1,26,19,27,28,14,24],"anyon":[22],"confin":[28],"pure":[2],"subdirectori":[23],"answer":[18],"instead":[14],"bit":[15,14,1,23],"simpl":[5,18,16,15,25,1,27,26,2,21,22,14,23],"circular":[22],"minimumt":[27],"s2plot":[14],"my_output":[22],"overridden":[28],"max":[28],"dive":[18],"after":[24],"lab":[2],"befor":[28,4],"wrong":[5,18],"mesh":[5,2],"okai":[19,21],"support":[5,18],"contribut":[18,27],"discard":[28],"mai":[22],"such":[18,28],"volumerendering3dprofil":[14],"associ":[22,27,28,24,26],"parallel":[5,15,16,6,10],"averag":[22,14],"a":[5,18,7,17,15,25,1,27,26,19,2,28,21,22,14,4,23,24,16],"sy":[17],"short":[5,15],"attempt":[28,18,4,27],"python_2":[23],"interpol":[28],"bind":[14],"sp":[22],"enzoorthoraybas":[28],"or":[7,18,26,27,28,21,14,4,23,24],"caus":[18,16],"inform":[18,26,27,28,22,4,24],"switch":[25],"maintain":[5,23],"combin":[18,1],"spheric":[14],"allow":[18,21],"cylind":[28],"callabl":[27],"mechan":[26],"1000":[25,17],"order":[14,28,24,17],"talk":[19],"beazlei":[18],"__":[26],"origin":[2,28,27],"behav":[27],"frontend":[2],"help":[5,19,18],"intimid":[1],"over":[22,28,25,2,23],"move":[26,4,28],"orang":[23],"becaus":[23,25,16,21],"galaxi":[27],"graduat":[2],"paper":[18],"through":[15,7,27,2,28,14,24],"affect":[28],"hierarchi":[15,16,18,26,19,4,24],"effici":[25],"flexibl":[6],"vari":[25],"paramet":[25,16,18,26,27,28,4,24],"24":[14],"write":[3,18,22,6,5],"style":[28],"le":[28],"outer":[25],"matthew":[2],"lo":[2],"get_sourc":[19],"platform":[23],"particle_typ":[4],"famou":[28],"comprehens":[2],"mail":[18],"of":[5,18,7,17,15,25,1,12,26,19,2,28,21,22,14,27,4,23,24,16],"main":[21],"might":[26,21],"pixel":[28],"connection_pool":[28],"then":[16,25,26,27,28,21,14,24],"them":[16,18,26,27,28,14,23,24],"good":[26,18],"var1":[22],"partiview":[4],"thei":[16,18,27,19,2,28,21,14,23,24],"var2":[22],"handl":[5,25,9,26],"handi":[26],"initi":[14,28],"nation":[2],"dat":[22],"framework":[2],"binnedprofile3d":[14],"clear_derived_quant":[4],"not":[5,15,18,27,26,19,2,28,21,22,14,4,23],"studi":[2,28],"now":[18,26,19,27,21,14,23,24],"yt":[5,18,7,17,15,6,25,1,9,12,26,2,28,22,14,27,4,23,24,16],"introduct":[5,2],"name":[5,25,18,26,2,28,21,4,23],"parameterfil":[4],"anyth":[14,21],"drop":[18],"l":[4],"galaxytwo":[27],"myprofil":[14],"easili":[26,25],"achiev":[28],"kpc":[22,14,25,24],"each":[17,26,27,28,22,14,24],"found":[18],"collaps":[27],"side":[28],"mean":[26,14,27,21],"compil":[18],"domain":[19],"export_boxes_pv":[4],"somename_15kpc":[24],"replac":[28],"individu":[14],"idea":[24],"ensur":[25,23],"realli":[26,19],"field_paramet":[28],"wrap":[14],"gird":[4],"static":[14],"connect":[28],"my_cub":[7],"our":[7,25,26,19,27,28,21,14],"happen":[21],"differ":[26,14,25,24,7],"extract":[5,7,15,1,27,14],"reduct":[23],"out":[18,1,26,19,27,28,22,4],"variabl":[22,14,21],"has_field_paramet":[28],"accomplish":[16],"space":[14],"routin":[5,0,6],"open":[22,18,25,26],"ha":[5,7,6,18,26,2,28,21,4,23,24],"crucial":[21],"primari":[2,28],"profil":[5,15,26,27,14,24],"re":[18,28,23,27],"_convertdensitycub":[21],"adapt":[5,2],"rel":[18],"reader":[2],"print":[18,26,19,21,14,4,24],"rm":[14,21],"current":[28],"forth":[19,28],"correct":[23],"red":[23],"common":[15,1],"dataset":[22,4,28],"linear":[2],"insid":[22,19,18],"advanc":[5,27,1,15],"manipul":[26,23,24],"argu":[22],"argv":[17],"standard":[14,1],"reason":[23],"base":[18,9,27,2,28,14,4,23,24],"believ":[2],"dictionari":[27,28],"usual":[28,23],"releas":[18,23],"org":[18],"indexboundari":[4],"care":[24],"activedimens":[26],"wai":[15,25,16,7,18,26,19,27,21,12,24],"g":[14,21],"launch":[26],"angl":[28],"veloc":[14,25],"traceback":[18],"ask":[26,14,18,19,16],"keep":[14,23,17],"filter":[4],"thing":[25,7,18,26,19,28,21,22],"length":[14,24],"plane":[15,16,19,27,28,24],"turk":[2],"due":[28],"w":[22,25,7,17],"my_data":[22,25],"512":[7],"clump":[15,27],"think":[22,4],"first":[16,18,26,19,27,21,14,4,24],"oper":[26,19,27,28],"softwar":[2,16],"rang":[22,17],"finest":[28],"export_particles_pb":[4],"suffix":[24],"directli":[28,26,14,4,19],"onc":[14,16],"arrai":[27,4,7],"qualiti":[7],"number":[28,14,18,19,16],"yourself":[26],"restrict":[5,19,18,28],"date":[23],"1e2":[14],"1e5":[14],"messag":[18],"divv":[21],"stabl":[23],"facil":[24],"angular":[27],"fanci":[25],"size":[4],"lazy_read":[14,27],"given":[16,26,27,28,22,4],"my_region":[19,21],"script":[15,17,6,5,1,26,3,23],"data":[5,17,7,18,1,9,27,26,19,2,28,21,22,14,4,23,24],"interact":[15],"system":[18,23,27],"least":[23],"attach":[18],"cumul":[28],"master":[18],"demonstr":[5,17,15],"statement":[27],"tom":[2],"1e":[14,27],"conveni":[26],"enzogrid":[4],"easier":[26,23,24],"friend":[26,19],"too":[27,25,21],"my_width":[17],"option":[28,14,4],"enzocuttingplan":[28],"that":[15,18,17,7,25,1,27,26,19,2,28,21,22,14,4,23,24,16],"namespac":[26],"baryon":[28],"tool":[24],"copi":[18],"setuptool":[23],"circumst":[14],"specifi":[5,18,28],"max_val":[28],"base_region":[28],"task":[15,1,16,17],"pars":[26,4],"enzoproj":[28],"mostli":[2,27],"conserv":[14,27],"alreadi":[23,27,28,16,21],"find_point":[4],"than":[22,25,2,28,27],"png":[14,24],"center":[27,26,19,2,28,14,4],"10":[22,19,25,17],"gal1_region":[27],"15":[24],"keyword":[4],"16":[14],"provid":[18,28],"cosmologycurrenttim":[22],"rightedg":[4],"prof2d":[14],"structur":[5,28,4,23,9],"min_val":[28],"project":[5,16,15,18,26,19,28,24],"i":[5,16,17,18,26,2,28,22,14,23,24],"r":[14,21],"xlabel":[14],"store":[22,14,16,26],"entri":[6],"posit":[28,4],"video":[18],"other":[16,1,26,19,27,28,21,22],"typic":[19,28,23],"seri":[22,4],"and":[5,18,7,17,15,25,1,9,27,26,19,2,28,21,22,14,4,23,24,16],"analysi":[5,17,18,9,2,22],"sai":[27],"fashion":[27],"abov":[14,24],"_local":[23],"terribl":[28],"radial":[14],"mind":[14],"anywher":[14],"enzocoveringgrid":[28],"packag":[5,16,7,15,2,22,23],"width":[25,1,24],"my_val":[17],"have":[18,17,7,25,1,26,19,27,28,21,22,14,23,24,16],"tabl":[5,7],"need":[18,26,19,27,28,21,14,23],"my":[5,18,2,23,17],"get_smallest_dx":[4],"slac":[2,23],"imagin":[22,27],"engin":[16],"relationship":[26,18],"zero":[19],"messeng":[18],"enzo1ddata":[28],"latter":[27],"h2i_fract":[24,17],"snow":[18],"add_cutting_plan":[27],"for":[5,18,16,17,25,27,26,19,2,28,21,22,14,4,23,24],"note":[16,7,25,1,26,27,28,21,22,14,4,24],"mix":[27],"sh":[23],"take":[26,14,28,24],"which":[18,7,25,1,12,26,19,27,28,21,14,4,23],"numberdens":[17],"so":[15,16,18,26,19,27,28,21,14,24],"properti":[26,27,24],"singl":[16,25,1,26,4,24],"weightedaveragequant":[22,27],"begin":[26],"unless":[28],"distribut":[14,16],"normal":[27,28],"multipli":[28],"licens":[18],"to":[5,18,7,17,15,6,25,1,27,26,19,2,28,21,22,14,4,23,24,16],"crash":[18],"most":[25,28,24,21],"gravitation":[27],"phase":[26],"kiloparsec":[24],"extractedregion":[28],"homepag":[18],"why":[5,18],"num_ghost_zon":[28],"don":[22,19,24,21],"year":[22,23],"ki":[23],"later":[26,19,24],"obtus":[1],"drive":[23],"km":[24],"doe":[19,4],"declar":[25],"fiel":[21],"place":[18,28],"determin":[26,27],"axi":[5,16,18,19,28,4,24],"max_rho":[22],"sum":[28],"fact":[2,21],"has_kei":[28],"somewhat":[2],"show":[26],"text":[4,24,7],"radiu":[28,14,4],"radii":[28],"enzodata":[28],"write_out":[7],"identifi":[22],"seen":[19,27],"find":[22,18,26],"ground":[2],"absolut":[18],"onli":[16,18,19,27,28,21,14,23],"inlin":[26],"print_stat":[4,17],"pkgname":[23],"pretti":[26,21],"with":[5,18,16,7,15,6,25,1,27,26,19,2,28,21,22,14,4,23,24],"enzoregionbas":[28],"indices_we_w":[27],"figur":[18,1],"should":[22,4,7,21],"configur":[18,23],"analyz":[5,2,6,10],"factor":[28,14,4,23],"govern":[21],"local":[26,14,23],"offici":[18],"child_indic":[4],"meant":[26],"do":[5,18,16,25,1,26,19,27,28,21,22,14],"cube":[7,21],"nearli":[14],"variou":[27],"get":[5,15,18,26,19,27,28,14,4,23,24],"there":[5,16,18,1,27,28,21,14,24],"simplest":[25,16],"autom":[5,14,24,15],"nativ":[5,4,9,26],"cannot":[14,28,16],"_densitycub":[21],"add_phase_spher":[14,24],"dx":[26],"128":[14],"2":[18,25,19,14,23,24],"requir":[18,28,23,21],"radiuskpc":[14],"reveal":[16],"scene":[27],"enabl":[2,28],"organ":[24],"my_data0001":[26,25],"h":[17,7,26,19,27,22,14,16],"convert_funct":[21],"possibl":[22,27],"paint_grid":[28],"coord":[28,4],"patch":[18],"remot":[14],"float":[28,4],"stuff":[26,19,21],"integr":[16],"mediat":[26],"contain":[5,9,27,28,4,24],"an":[5,18,16,7,25,27,26,19,2,28,21,22,14,4,23],"x":[18,25,19,28,14,4],"grab":[26,14,19,24],"3d":[9,26,19,27,28,14],"where":[5,18,26,19,27,28,21,14,23,24],"remov":[22],"baryonfield":[27],"commod":[2],"enzostaticoutput":[17,25,26,28,22,4],"set":[25,7,18,26,28,21,4,23,24],"dump":[7],"isbound":[27],"right_edg":[28,7],"arch_path":[23],"set_field_paramet":[28],"displai":[14,27],"datatyp":[5,28,20,24,6],"get_enzo_grid":[4],"see":[18,27,28,21,14,4],"result":[26,18],"enzospherebas":[28],"close":[23,7],"improv":[18,2],"contour":[28],"particl":[28,4],"statu":[27],"still":[24],"three":[15,14,28,21],"onto":[28],"inconveni":[14],"record":[18],"speed":[18],"someth":[5,18,16,26],"plotcollect":[22,14,25,24,17],"2_64":[23],"web":[18],"3":[17,7,18,27,28,21,14,23],"smallest":[4],"between":[26,19,18,4,28],"import":[17,1,26,27,22,14,24],"neither":[14],"1d":[28,9],"email":[18],"xvf":[23],"enzoslicebas":[28],"we":[15,25,26,19,27,28,21,14,4,23,24],"never":[28,4],"bound":[14,27],"kei":[28,4,21],"25":[27],"numer":[23],"vrc":[14],"extens":[2],"entir":[19,18,28],"data_styl":[4],"len":[22],"extent":[23],"group":[24],"argument":[14,28],"come":[26],"addit":[23,24],"both":[28],"c":[22,18,2,26],"z":[14,18,4,19],"rsun":[17],"add_field":[14,21],"clf":[22],"binnedprofile2d":[14],"immers":[2],"ki12":[23],"against":[22,7],"enzotool":[18],"s":[5,18,16,17,25,1,26,19,27,21,14,4,24],"tutori":[26,5,18,28,15],"datafield":[4],"logic":[28],"let":[26,19,18,24,27],"com":[18,27],"fix":[19,25,28],"enzo":[5,18,4,23,9],"pre":[26,27,24],"acceler":[2],"simpli":[14,25,4,16],"author":[2],"cm":[14,24,21],"point":[6,26,27,28,22,4],"instanti":[26,14,27,4],"overview":[5],"cg":[28,21],"switch_field":[25,17],"densiti":[17,7,25,26,19,27,28,21,22,14,24],"walk":[15],"enzogridcollect":[28],"written":[26,2],"64":[23],"param":[4],"suppli":[28,14,27,4,24],"respect":[19],"guid":[18],"assum":[26,1],"along":[16,18,28,14,4,23,24],"backend":[18,23],"sever":[27,18,16,6,23],"quit":[23],"ultim":[28],"extrema":[14],"creat":[5,18,6,17,25,22,12,27,20,28,21,13,14,4,23,24],"coupl":[19,18,21],"my_slic":[19],"addition":[14,18],"altogeth":[22],"py":[23],"numpi":[18,4,23,27],"compos":[21],"been":[7,6,18,27,2,22,4,23],"accessor":[27],"pb":[4],"pc":[16,17,25,27,14,24],"beer":[2],"much":[18,16,24],"pf":[17,7,25,28,22,4],"valu":[26,19,28,22,14,4],"interest":[18,26,27,14,23,24],"modif":[28],"popul":[27],"my_grid":[26,19],"storedbinnedprofile3d":[14],"remaind":[26,28],"0001":[14],"spit":[26],"xvfz":[23],"notori":[22],"mturk":[23],"convert":[14,28,21],"ani":[5,7,18,27,28,14,23,24],"coordin":[28,19,27,4],"understand":[24],"child":[18,28],"last":[14,23,21],"rai":[4],"densitycub":[21],"those":[22,14,28,24,26],"case":[16,18,2,28,14,23],"strongli":[23],"ident":[14,27],"max_level":[28],"look":[26,14,4,19],"gnu":[18],"these":[5,16,7,18,1,27,28,21,14,23],"enzogridbas":[4],"align":[28],"plugin":[5,6,11],"mpi4pi":[16],"will":[16,7,18,1,26,19,27,28,21,22,14,4,23,24],"defin":[15,25,26,27,28,21],"calcul":[19],"ar":[5,18,16,25,12,26,19,27,28,21,22,14,23,24],"behavior":[18,21],"error":[18,4],"report":[18],"neighbor":[28],"invoc":[18],"howev":[16,7,27,2,28,21,22,14,24],"num_level":[28],"pack":[26],"ve":[17,18,19,27,14,24],"cell":[28,4],"stdout":[4],"set_attr":[4],"is":[5,18,16,17,25,27,26,19,2,28,21,22,14,4,23,24],"site":[23],"attribut":[26,7],"kwarg":[28],"default_valu":[28],"substanti":[2],"virtu":[2],"fn":[17],"return":[26,19,27,28,21,4],"inspector":[19],"mani":[15,18,26],"primit":[25],"id":[4],"feed":[14,27,19,24],"if":[7,18,26,19,27,28,22,14,4,23,24],"parent":[18,4],"subscrib":[18],"proport":[28],"develop":[18,2,23],"etc":[22],"perform":[15],"seek":[23],"make":[5,18,7,25,1,26,22,14,23],"save_data":[4],"same":[19,27,28,21,14,24],"check":[27,18,4,28,21],"member":[28],"binari":[5,23],"epoch":[18],"instanc":[28,4,24],"fido":[22],"9":[21],"algorithm":[2],"grid_list":[28],"document":[22],"pywrapp":[23],"pan":[16],"complet":[2],"enzoprojbas":[28],"http":[18],"find_max":[22,4,26],"5e":[22],"bonus":[4],"nest":[7],"assist":[1],"driven":[16],"fairli":[22,27,1,23],"001":[27],"binnedprofile1d":[14],"user":[18,2,23],"applic":[18,7],"refin":[5,2],"extern":[26],"store_profil":[14],"chang":[14,18,28,23],"expand":[2],"built":[19,2],"cellmass":[16,24],"lower":[14],"appropri":[28,27,4,16,23],"off":[26,18],"lib":[23],"scale":[28,4],"my_unit":[17],"add_phase_object":[14],"thu":[18,25,28],"enzocylinderbas":[28],"well":[18,26,19,27,22,14],"inherit":[28],"ld_library_path":[23],"thought":[28],"exampl":[5,17,15,27,21,14],"command":[26,18,25,23,27],"expens":[26],"thi":[15,7,18,1,26,19,27,28,21,22,14,4,23],"weight_field":[28,16,24],"y":[28,19,18,4],"particle_index":[4],"everyth":[19,27,21],"utilitarian":[2],"dimension":[15,14,28],"left":[28,19,4],"explan":[14,21],"load":[26,14,4],"protocol":[19,28,21],"just":[26,27,4,21],"object":[5,16,7,15,18,26,19,27,28,21,14,4,24],"savefig":[14],"pylab":[22,14],"obtain":[14,28],"select_grid":[28,4],"select":[28,17],"extract_connected_set":[28],"new_prof":[14],"behind":[18,27],"touch":[26],"depart":[2],"paul":[2],"32":[14],"cellvolum":[14],"herarchi":[19],"languag":[2],"mandat":[28],"cut":[15,16,19,27,28,24],"binned2dprofil":[27],"easi":[26,18],"also":[7,18,27,26,19,2,21,22,14,24],"except":[19,28],"littl":[24],"the":[1,2,4,5,6,7,8,23,11,14,15,16,17,18,19,21,22,12,24,25,26,27,28],"identif":[18],"fortran":[5,0,6],"add":[14,25,24],"n":[22],"4":[19,27,28,23],"gal1_mix":[27],"timestep":[26],"reslic":[28],"input":[28],"save":[25,4,24,17],"app":[23],"momentum":[18,27],"raven":[18,16,17,25,27,14,24],"bin":[14,23],"book":[18],"fortun":[26],"around":[19,24],"enzo2ddata":[28],"format":[4],"read":[7,26,27,28,14,4,23],"big":[14],"swig":[4],"spatial":[26],"piec":[18],"temperatur":[16,17,25,26,27,22,14,24],"grid":[15,18,26,19,27,28,21,14,4],"know":[26,19,18,28,24],"wide":[16,23],"part":[24,21],"cd":[23],"paint":[28],"python2":[26,23],"centerofmass":[27],"like":[16,26,19,27,28,14],"specif":[18],"bashrc":[23],"arbitrari":[28,4,16],"manual":[26,14,1,24],"zoom":[25,16],"integ":[18,28],"collect":[15,18,25,24,27],"pcolormesh":[14],"either":[26,18,28],"view":[28,4],"region":[15,19,27,28,21,14,4],"output":[22,18,4,17,26],"architectur":[18],"page":[5],"openfil":[7],"right":[18,26,19,27,4,23],"often":[19,23,17],"deal":[28,16],"simplifi":[23],"creation":[18,25,21],"some":[15,18,25,1,27,26,19,2,21,14,4,23,24],"back":[26,14,27,4,28],"finestlevel":[4],"wxpython":[23],"export":[2,4,23,7],"interpolate_discret":[28],"home":[23],"showmedo":[18],"guess":[27,28],"librari":[2],"2d":[28,9],"my_data0001_100kpc":[25],"slice":[15,16,25,19,27,28,21,22,4,24],"find_sphere_grid":[4],"alamo":[2],"angularmomentumvector":[27],"leak":[22],"though":[19,18],"definit":[26],"best":[18],"evolv":[2],"proj":[16],"toolkit":[5,2,23],"necessari":[23],"content":[5,18,15],"notabl":[27],"t":[18,26,19,21,22,24],"machin":[14,23],"be":[15,18,16,7,6,25,1,27,26,2,28,21,22,14,4,23],"plu":[21],"knew":[18],"run":[5,17,6,0,22,14,23],"power":[28,12,21],"timeseri":[5,1,22],"inspect":[14],"usag":[23],"fed":[27],"els":[26],"_fraction":[21],"presuppos":[27],"left_edg":[28,7],"my_script":[23],"prerequisit":[26,23],"posses":[26],"keeper":[18],"by":[16,18,27,26,19,2,28,14,4,23],"_":[26],"simpler":[22],"on":[5,18,16,17,15,25,12,26,19,2,28,21,22,14,27,4,23,24],"about":[5,18,26,19,27,21,22,4],"greatli":[23],"get_posit":[4],"transpos":[14],"freedom":[2],"cellmassmsun":[22,14,27],"memori":[22,14,27,4,28],"slightli":[14],"currenttimeidentifi":[18],"greater":[27],"simul":[26,4,17],"shift":[19,28],"issu":[23],"done":[22,19,18,28,27],"act":[27,28,24],"fals":[18,4],"ti":[16],"processor":[16],"block":[24],"subset":[27,4],"own":[26,21],"enzorun":[4],"sdsc":[23],"primarili":[4],"h2":[14],"pythonpath":[23],"into":[15,18,7,25,1,27,26,2,28,14],"within":[26,4,28],"encod":[25],"daunt":[15],"automat":[14,28,16,24,21],"h5":[7],"down":[28,4],"resili":[22],"04i":[22],"strip":[4],"enzohierarchi":[26,4],"abel":[2],"child_mask":[4],"storag":[23],"your":[18,26,21,22,14,23],"cutting_plan":[27],"manag":[5],"implic":[19],"weight":[14,28,16],"val":[28],"opengl":[14],"wa":[26,2,27],"themat":[24],"question":[19],"transform":[27],"fast":[23,21],"class":[28,4],"avail":[16,18,19,27,28,21,22,14,23],"start":[5,15,18,26,19,27,23],"reli":[2],"lago":[5,18,17,25,9,26,19,28,21,22,14,4],"interfac":[2,4,23,24,27],"includ":[17,27,28,21,14,24],"fraction":[14],"get_box_grid":[4],"resolut":[19,28,16],"strict":[21],"unam":[23],"function":[27,14,2,28,21],"reduc":[2,28],"footwork":[25],"galaxyon":[27],"enough":[19],"forc":[4],"tupl":[26,28],"criteria":[27],"keyerror":[28],"but":[18,25,1,26,19,28,21,22,14,23,24],"clear_data":[28],"lcoal":[23],"eas":[2],"mitig":[2],"true":[28,14,4],"bug":[18],"def":[21],"longer":[14],"extend":[5,18,2,12,6],"throw":[28,4],"made":[22,18,28,7],"evolut":[22],"consist":[25,23],"stanford":[2,23],"whether":[14,27],"wish":[23],"access":[16,7,18,26,27,28,21,14,4,24],"smooth":[7],"maximum":[26,4],"us":[5,16,6,15,8,18,26,19,27,28,21,22,14,4,23],"lead":[18,1,23],"insert":[28],"below":[28,17],"otherwis":[28,4],"problem":[18,16,27],"enzo3ddata":[28],"clear":[28,14,4],"tracer":[27],"gone":[5,18],"featur":[2],"ad":[15,14,27,4,24],"_densiti":[21],"up":[5,18,27,26,2,28,21,23],"int":[4],"cover":[14,28],"dure":[2,17,27],"flush":[27],"am":[2],"their":[26,28],"arbitrarili":[28],"repres":[18,28],"extractedregionbas":[28],"as":[15,16,17,18,27,26,19,2,28,21,22,14,4,23,24],"clever":[2],"exist":[26,4,28,24],"at":[18,7,25,1,27,26,2,28,22,14,4,23],"file":[5,18,16,7,6,25,26,24,22,4,23,11],"request":[21],"ax":[19,18,24],"find_slice_grid":[4],"quantiti":[5,16,6,15,27,28,13,22],"energi":[2],"probabl":[18],"incorrect":[18],"again":[14],"consum":[16],"collid":[27],"no":[28,14,2,4],"find_min":[4],"todo":[4],"get_data":[28,4],"when":[22,27,23,24,21],"end":[27],"field":[5,17,7,15,6,25,1,26,19,27,28,21,14,4,12,24],"prism":[19,28],"valid":[21],"5":[26,14,27,19,23],"futur":[14,18],"branch":[23],"varieti":[16],"test":[19],"avg_t":[22,27],"you":[18,16,7,25,1,12,26,19,27,21,22,14,4,23,24],"amax":[14],"mock":[28],"derivedfield":[21],"node":[4,16,7],"draw":[28],"ll":[15,14,19,26],"star":[4],"findmax":[4],"affili":[4],"createarrai":[7],"enzoregion":[28],"m":[26],"increas":[2],"push":[28],"meaning":[18],"public":[18,7],"log":[14,18],"consid":[25,28],"intepret":[15],"au":[25,24,17],"matplotlib":[14,23],"ghost":[28,21],"receiv":[27],"set_width":[25,24,17],"faster":[14],"furthermor":[26],"scientif":[18],"directori":[23],"suit":[18],"lot":[18,1,24,21],"add_project":[16,24],"u":[25,23,17],"time":[16,18,1,2,22,4,24],"alright":[14],"fieldinfo":[19,21],"cookbook":[5,1],"stick":[26,21]}]
\ No newline at end of file

Modified: trunk/doc/build/html/tutorial/index.html
==============================================================================
--- trunk/doc/build/html/tutorial/index.html	(original)
+++ trunk/doc/build/html/tutorial/index.html	Mon Jun 16 14:23:46 2008
@@ -19,7 +19,7 @@
     <link rel="search" title="Search" href="../search.html" />
     <link rel="top" title="yt v0.3-pre documentation" href="../index.html" />
     <link rel="next" title="Cookbook" href="../cookbook/index.html" />
-    <link rel="prev" title="Introduction" href="../intro.html" />
+    <link rel="prev" title="Getting Started" href="../getting_started.html" />
   </head>
   <body>
     <div class="related">
@@ -28,7 +28,7 @@
         <li class="right" style="margin-right: 10px"><a href="../genindex.html" title="General Index" accesskey="I">index</a></li>
         <li class="right"><a href="../modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
           <li class="right"><a href="../cookbook/index.html" title="Cookbook" accesskey="N">next</a> |</li>
-          <li class="right"><a href="../intro.html" title="Introduction" accesskey="P">previous</a> |</li>
+          <li class="right"><a href="../getting_started.html" title="Getting Started" accesskey="P">previous</a> |</li>
     <li><a href="http://yt.enzotools.org/">yt</a> »</li>
     
         <li><a href="../index.html">yt v0.3-pre documentation</a> »</li>
@@ -117,7 +117,7 @@
       <div class="sidebar">
         <div class="sidebarwrapper">
             <h4>Previous topic</h4>
-            <p class="topless"><a href="../intro.html" title="previous chapter">Introduction</a></p>
+            <p class="topless"><a href="../getting_started.html" title="previous chapter">Getting Started</a></p>
             <h4>Next topic</h4>
             <p class="topless"><a href="../cookbook/index.html" title="next chapter">Cookbook</a></p>
             <h3>This Page</h3>
@@ -140,7 +140,7 @@
         <li class="right" style="margin-right: 10px"><a href="../genindex.html" title="General Index" accesskey="I">index</a></li>
         <li class="right"><a href="../modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
           <li class="right"><a href="../cookbook/index.html" title="Cookbook" accesskey="N">next</a> |</li>
-          <li class="right"><a href="../intro.html" title="Introduction" accesskey="P">previous</a> |</li>
+          <li class="right"><a href="../getting_started.html" title="Getting Started" accesskey="P">previous</a> |</li>
     <li><a href="http://yt.enzotools.org/">yt</a> »</li>
     
         <li><a href="../index.html">yt v0.3-pre documentation</a> »</li>

Added: trunk/doc/source/getting_started.rst
==============================================================================
--- (empty file)
+++ trunk/doc/source/getting_started.rst	Mon Jun 16 14:23:46 2008
@@ -0,0 +1,103 @@
+===============
+Getting Started
+===============
+
+Maintained Installations
+========================
+
+As of right now, I maintain an installation of yt on several machines.  I try
+to keep them up to date with the stable branch.
+
+DataStar (SDSC)
+---------------
+
+To use yt on 
+`DataStar <http://www.sdsc.edu/us/resources/datastar/>`_,
+you need to ensure you are using the correct
+installation of Python 2.4 and the correct set of python packages.  In my
+.bashrc I have:
+
+.. code-block:: bash
+
+   export PATH=/usr/local/apps/python_2.4.2_64/bin:$PATH
+   export PYTHONPATH=/users/stanford/mturk/local/lib/python2.4/site-packages/
+
+which ensures that you are using my installation of yt and the correct, 64-bit
+global installation of Python2.4.
+
+Orange and Red (SLAC)
+---------------------
+
+To use yt on `Orange <http://kipac.stanford.edu/collab/computing/hardware/orange>`_
+or `Red <http://www.sgi.com/company_info/newsroom/press_releases/2005/april/space_sciences.html>`_
+you have to set your pythonpath appropriately.  I have created a script called
+'pywrapper.sh' that sets up your PATH, PYTHONPATH and LD_LIBRARY_PATH.
+
+.. code-block:: bash
+
+   $ export ARCH_PATH="/u/ki/mturk/ki12/`uname -p`_local/"
+   $ $ARCH_PATH/bin/pywrapper.sh my_script.py
+
+where my_script.py is the script you wish to run.
+
+Binary Packages
+===============
+
+Installing From Source
+======================
+
+Prerequisites for yt
+--------------------
+
+A driving factor in the development of yt over the months leading to release
+0.3 has been the reduction of dependencies.  To that extent, only a few
+packages are required for the base usage, and a GUI toolkit if you are going to use
+the graphical user interface, Reason.
+
+ * `Python <http://python.org/>`_, at least version 2.4, but preferably 2.5.
+ * `HDF5 <http://www.hdfgroup.org/>`_, the data storage backend used by Enzo
+   and yt (if you can run Enzo, this is already installed!)
+ * `NumPy <http://numpy.scipy.org/>`_, the fast numerical backend for Python
+ * `MatPlotLib <http://matplotlib.sf.net/>`_, the plotting package
+ * `wxPython <http://www.wxpython.org/>`_, the GUI toolkit
+
+(If you are only interested in manipulating data without any graphical plotting
+or interfaces, you only need to install NumPy and Python!)
+
+Installing the Necessary Packages
+---------------------------------
+
+Installing Python itself is usually quite simple, and often very fast.  Because
+we're setting up a small system of packages, even if you have a system-wide
+install of python2.5 it can be easier in some cases to create a local directory
+structure:
+
+.. code-block:: bash
+
+   $ tar xvf Python-2.5.2.tar.gz
+   $ cd Python-2.5.2
+   $ ./configure --prefix=$HOME/local/
+   $ make install
+
+This will create (if necessary) a directory named local in your home directory,
+along with the necessary subdirectories.  When the executable
+``$HOME/lcoal/bin/python2.4`` is used to install a package, it will install it
+to the ``$HOME/local/`` directory structure.
+
+The python packages are fairly straightforward to install.  The process of
+installing packages in python has been greatly simplified over the last few
+years with the addition of setuptools, but for these particular packages I
+typically recommend installing from source, which for Python packages consists
+of changing to the source directory and issues the command:
+
+.. code-block:: bash
+
+   $ tar xvfz $PKGNAME.tar.gz
+   $ cd $PKGNAME
+   $ python2.5 setup.py install
+
+This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
+**strongly** suggest you seek binaries for your platform.  If they are not
+available, I recommend you read the ``INSTALL`` file and follow its directions
+closely.
+

Modified: trunk/doc/source/index.rst
==============================================================================
--- trunk/doc/source/index.rst	(original)
+++ trunk/doc/source/index.rst	Mon Jun 16 14:23:46 2008
@@ -10,6 +10,7 @@
    :maxdepth: 2
 
    intro
+   getting_started
    tutorial/index
    cookbook/index
    extending/index

Modified: trunk/doc/source/intro.rst
==============================================================================
--- trunk/doc/source/intro.rst	(original)
+++ trunk/doc/source/intro.rst	Mon Jun 16 14:23:46 2008
@@ -32,61 +32,3 @@
 mitigated by a cleverness of algorithms and a substantially improved
 development time for the user in the case of a desire to expand the
 functionality.
-
-```EXPAND```
-
-Prerequisites for yt
---------------------
-
-A driving factor in the development of yt over the months leading to release
-0.3 has been the reduction of dependencies.  To that extent, only a few
-packages are required for the base usage, and a GUI toolkit if you are going to use
-the graphical user interface, Reason.
-
- * `Python <http://python.org/>`_, at least version 2.4, but preferably 2.5.
- * `HDF5 <http://www.hdfgroup.org/>`_, the data storage backend used by Enzo
-   and yt (if you can run Enzo, this is already installed!)
- * `NumPy <http://numpy.scipy.org/>`_, the fast numerical backend for Python
- * `MatPlotLib <http://matplotlib.sf.net/>`_, the plotting package
- * `wxPython <http://www.wxpython.org/>`_, the GUI toolkit
-
-(If you are only interested in manipulating data without any graphical plotting
-or interfaces, you only need to install NumPy and Python!)
-
-Installing the Necessary Packages
----------------------------------
-
-Installing Python itself is usually quite simple, and often very fast.  Because
-we're setting up a small system of packages, even if you have a system-wide
-install of python2.5 it can be easier in some cases to create a local directory
-structure:
-
-.. code-block:: bash
-
-   $ tar xvf Python-2.5.2.tar.gz
-   $ cd Python-2.5.2
-   $ ./configure --prefix=$HOME/local/
-   $ make install
-
-This will create (if necessary) a directory named local in your home directory,
-along with the necessary subdirectories.  When the executable
-``$HOME/lcoal/bin/python2.4`` is used to install a package, it will install it
-to the ``$HOME/local/`` directory structure.
-
-The python packages are fairly straightforward to install.  The process of
-installing packages in python has been greatly simplified over the last few
-years with the addition of setuptools, but for these particular packages I
-typically recommend installing from source, which for Python packages consists
-of changing to the source directory and issues the command:
-
-.. code-block:: bash
-
-   $ tar xvfz $PKGNAME.tar.gz
-   $ cd $PKGNAME
-   $ python2.5 setup.py install
-
-This method works for NumPy, Matplotlib and yt itself, but for wxPython, I
-**strongly** suggest you seek binaries for your platform.  If they are not
-available, I recommend you read the ``INSTALL`` file and follow its directions
-closely.
-



More information about the yt-svn mailing list