Skip to content

Commit

Permalink
minor increment to version in anticipation of tagging on github
Browse files Browse the repository at this point in the history
  • Loading branch information
jgostick committed Feb 18, 2017
1 parent f0469e9 commit 4f33e1f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion OpenPNM/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@
------
>>> import OpenPNM
Example
-------
The following few lines setup all the necessary objects for performing
simulations:
>>> import OpenPNM as op
>>> net = op.Network.Cubic(shape=[5, 5, 5], spacing=0.001)
>>> geo = op.Geometry.Stick_and_Ball(network=net, pores=net.Ps, throats=net.Ts)
>>> air = op.Phases.Air(network=net)
>>> water = op.Phases.Water(network=net)
>>> phys_air = op.Physics.Standard(network=net, geometry=geo, phase=air)
>>> phys_wat = op.Physics.Standard(network=net, geometry=geo, phase=water)
"""
import sys as _sys
import scipy as _sp
Expand All @@ -41,7 +54,7 @@
if _sys.version_info < (3, 4):
raise Exception('OpenPNM requires Python 3.4 or greater to run')

__version__ = '1.6'
__version__ = '1.6.1'

from . import Base
from . import Network
Expand Down

0 comments on commit 4f33e1f

Please sign in to comment.