| stream.f.html |   | 
  | Source file:   stream.f | 
| Directory:    /home/rjl/git/claworg/clawpack-4.x/apps/advection/2d/sphere/rotation | 
| Converted:    Sat Aug  6 2011 at 21:53:02 
  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