| 
  stream.f.html   | 
                 |  
  | 
 Source file:   stream.f 
 | 
| 
 Directory:    /home/rjl/git/rjleveque/clawpack-4.x/apps/advection/2d/sphere/rotation 
 | 
| 
 Converted:    Tue Jul 26 2011 at 12:58:54 
  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