Changeset 3492

Show
Ignore:
Timestamp:
03/19/2010 03:43:01 PM (4 months ago)
Author:
guyer
Message:

merged source:branches/version-2_0@3488:3491 to source:trunk@3491

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/phase/anisotropyOLD.py

    r3490 r3492  
    227227>>> testData = loadtxt(os.path.splitext(__file__)[0] + '.gz') 
    228228>>> print phase.allclose(testData) 
    229 1     
     2291 
    230230""" 
    231231__docformat__ = 'restructuredtext' 
  • trunk/examples/phase/missOrientation/mesh1D.py

    r3490 r3492  
    8484>>> testData = loadtxt(os.path.splitext(__file__)[0] + '.gz') 
    8585>>> print phase.allclose(testData) 
    86 1     
     861 
    8787""" 
    8888__docformat__ = 'restructuredtext' 
  • trunk/fipy/variables/variable.py

    r3490 r3492  
    5454    >>> b = 4 * a 
    5555    >>> b 
    56     (Variable(value=3) * 4) 
     56    (Variable(value=array(3)) * 4) 
    5757    >>> b() 
    5858    12 
     
    6363    >>> a.setValue(5) 
    6464    >>> b 
    65     (Variable(value=5) * 4) 
     65    (Variable(value=array(5)) * 4) 
    6666    >>> b() 
    6767    20