Result of SimPEG hackathon

- Incorporate field class on DC
- Add IP forward modelling and inversion
- Modify notebooks
- change folder name form simpegDC to simpegDCIP
This commit is contained in:
seogi_macbook
2015-06-03 08:29:05 -07:00
parent 820bf85930
commit e0d9c27d87
17 changed files with 1276 additions and 234 deletions
@@ -0,0 +1,12 @@
import unittest
import simpegDC as DC
class DCAnalyticTests(unittest.TestCase):
def test_forwardAnalytic(self):
self.assertTrue(DC.Examples.Verification.run() < 0.1)
if __name__ == '__main__':
unittest.main()