Changeset 3492
- Timestamp:
- 03/19/2010 03:43:01 PM (4 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
examples/phase/anisotropyOLD.py (modified) (1 diff)
-
examples/phase/missOrientation/mesh1D.py (modified) (1 diff)
-
fipy/variables/variable.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/phase/anisotropyOLD.py
r3490 r3492 227 227 >>> testData = loadtxt(os.path.splitext(__file__)[0] + '.gz') 228 228 >>> print phase.allclose(testData) 229 1 229 1 230 230 """ 231 231 __docformat__ = 'restructuredtext' -
trunk/examples/phase/missOrientation/mesh1D.py
r3490 r3492 84 84 >>> testData = loadtxt(os.path.splitext(__file__)[0] + '.gz') 85 85 >>> print phase.allclose(testData) 86 1 86 1 87 87 """ 88 88 __docformat__ = 'restructuredtext' -
trunk/fipy/variables/variable.py
r3490 r3492 54 54 >>> b = 4 * a 55 55 >>> b 56 (Variable(value= 3) * 4)56 (Variable(value=array(3)) * 4) 57 57 >>> b() 58 58 12 … … 63 63 >>> a.setValue(5) 64 64 >>> b 65 (Variable(value= 5) * 4)65 (Variable(value=array(5)) * 4) 66 66 >>> b() 67 67 20
FiPy: A Finite Volume PDE Solver Using Python