stream.f.html CLAWPACK  
 Source file:   stream.f
 Directory:   /Users/rjl/git/rjleveque/clawpack-4.6.3/apps/advection/2d/sphere/rotation
 Converted:   Mon Jan 21 2013 at 20:15:21   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
c
c     =================================================
      function stream(x,y,z)
c     =================================================
c
c     # stream function defining the velocity.
c     # (x,y,z) is a point on the sphere.
c     # rotation about an axis through 0 and (xaxis,yaxis,zaxis)

      implicit double precision (a-h,o-z)
      common /comaxis/ xaxis,yaxis,zaxis

      
      stream = x*xaxis + y*yaxis + z*zaxis
c
      return
      end