Updates to travis and documentation

This commit is contained in:
rowanc1
2014-02-07 10:51:44 -08:00
parent 68abb7a7cf
commit 66ccdb4042
5 changed files with 75 additions and 12 deletions
+6 -2
View File
@@ -4,10 +4,14 @@ python:
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib
- sudo apt-get install -qq gcc gfortran libblas-dev liblapack-dev python-numpy python-scipy python-matplotlib python-pip
- sudo pip install scipy --upgrade
- sudo pip install numpy --upgrade
- cd ../
- git clone https://github.com/simpeg/simpeg.git
- python simpeg/SimPEG/setup.py
- cd simpeg/SimPEG/
- python setup.py
- cd ../../
- echo export PYTHONPATH=$PYTHONPATH:/home/travis/build/simpeg/simpeg >> .bashrc
- source .bashrc
- cd simpegem
+4 -4
View File
@@ -1,10 +1,10 @@
.. _api_DC:
.. _api_FDEM:
DC
**
Base Classes
************
.. automodule:: simpegDC.DC
.. automodule:: simpegEM.FDEM
:show-inheritance:
:members:
:undoc-members:
+21
View File
@@ -0,0 +1,21 @@
.. _api_TDEM:
Base Classes
************
.. automodule:: simpegEM.TDEM.BaseTDEM
:show-inheritance:
:members:
:undoc-members:
:inherited-members:
TDEM - B formulation
********************
.. automodule:: simpegEM.TDEM.TDEM_b
:show-inheritance:
:members:
:undoc-members:
:inherited-members:
+23
View File
@@ -0,0 +1,23 @@
.. _api_Utils:
Analytic Functions
******************
.. automodule:: simpegEM.Utils.Ana.TEM
:show-inheritance:
:members:
:undoc-members:
:inherited-members:
Sources
*******
.. automodule:: simpegEM.Utils.Sources.magneticDipole
:show-inheritance:
:members:
:undoc-members:
:inherited-members:
+21 -6
View File
@@ -7,17 +7,32 @@ SimPEG (Simulation and Parameter Estimation in Geophysics) is a python
package for simulation and gradient based parameter estimation in the
context of geoscience applications.
SimPEG-DC uses SimPEG as the framework for the forward and inverse
direct current resistivity geophysical problem.
SimPEG-EM uses SimPEG as the framework for the forward and inverse
electromagnetics geophysical problems.
DC
==
Time Domian Electromagnetics
============================
.. toctree::
:maxdepth: 2
api_DC
api_TDEM
Frequency Domian Electromagnetics
=================================
.. toctree::
:maxdepth: 2
api_FDEM
Utils
=====
.. toctree::
:maxdepth: 2
api_Utils
Testing SimPEG