Interactive session for prepared example 3



        *******************************************************            
        ****  Welcome to the PDE2D 9.6 Interactive Driver  ****            
        *******************************************************            
                                                                           
   PDE2D can solve systems of (linear or nonlinear) steady-state,          
   time-dependent and eigenvalue partial differential equations            
   in 1D intervals, general 2D regions, and in a wide range of simple      
   3D regions.  Ordinary differential equation systems can also be         
   solved.                                                                 
                                                                           
   You will now be asked a series of interactive questions about your      
   problem.  The answers you give will be used to construct a PDE2D        
   FORTRAN program, which can then be compiled and linked with the PDE2D   
   runtime routines to produce an executable program.  The FORTRAN         
   driver program created will be well-documented and highly readable      
   (most of the interactive messages are repeated in the comments),        
   so that minor modifications or corrections can be made directly to      
   the FORTRAN program, without the need to work through a new             
   interactive session.                                                    
                                                                           
   You can alternatively create your PDE2D FORTRAN program using the       
   PDE2D graphical user interface (GUI) ("pde2d_gui [progname]").  It      
                                                                      [RETURN]
   is extraordinarily easy to set up problems using the PDE2D GUI,         
   which handles 0D and 1D problems, and 2D and 3D problems in "a wide     
   range of simple regions".  However, the PDE2D GUI cannot handle         
   complex regions, so if you have a complex 2D region you must use        
   this Interactive Driver.                                                
                                                                           
   If this is your first time to use PDE2D, you may want to work           
   through an example problem before trying one of your own.  Do you       
   want to work through a prepared example?                                
|---- Enter yes or no
yes
   Several prepared examples are available.  Enter:                        
                                                                           
       1 - to see a simple problem: a simply-supported elastic plate       
           equation, with a unit load concentrated at the midpoint of      
           a square.                                                       
       2 - to see a more complex problem: a non-linear, steady-state       
           PDE, solved in an annulus.  Dirichlet (U = ...) boundary        
           conditions are imposed on part of the boundary, and Neumann     
           (dU/dn = ...) conditions are imposed on the other part, in      
           this example.  The initial triangulation is generated           
           automatically, and adaptive grid refinement is illustrated.     
       3 - to see an eigenvalue problem.  The region has a curved          
           interface across which material properties vary abruptly, in    
           this example.                                                   
       4 - to see the first part of a thermal stress problem.  In this     
           part, the temperature distribution in a V-notched block is      
           calculated by solving the time-dependent heat conduction        
           equation, using adaptive time step control.                     
       5 - to see the second part of a thermal stress problem.  In         
           this part, the stresses induced in the V-notched block by       
           thermal expansion are calculated, using the temperature         
           distribution output by example 4.  You must run example 4       
                                                                      [RETURN]
           and save the tabular output before you can run example 5.       
           Examples 4 and 5 illustrate communication between problems.     
       6 - to see a 1D time-dependent integro-differential equation for    
           a financial math application.  In this problem there is a       
           term involving an integral of the solution, which requires      
           that we use PDE2D's feature for interpolating the solution      
           at the last saved time step, for use in the integral term.      
       7 - to see a waveguide problem (an eigenvalue problem in which      
           the eigenvalue appears nonlinearly).  This example shows how    
           to handle boundary conditions of different types on the same    
           arc, and how to produce a plot of a computed integral vs time.  
       8 - to see the Navier-Stokes equations (penalty formulation)        
           solved for a fluid flowing around a bend.                       
       9 - to see a 3D elasticity problem, solved in a torus.  This        
           example illustrates the use of user-defined coordinate          
           transformations to handle more general 3D regions.              
      10 - to see a time-dependent wave equation (reduced to a system      
           of two PDEs), solved in a 3D box.                               
      11 - to see a 3D eigenvalue problem (the Schrodinger equation        
           in a hydrogen atom).  This example illustrates the use of       
           spherical coordinates and periodic boundary conditions.         
      12 - to see a 3D eigenvalue problem, solved in a composite region    
                                                                      [RETURN]
           consisting of two cylinders of different material properties.   
      13 - to see the axisymmetric Navier-Stokes equations solved in a     
           non-rectangular channel, using the collocation FEM.             
      14 - to see a 1D saturated/unsaturated water flow problem.           
      15 - to see a 1D version of the Schrodinger eigenvalue equation      
           of example 11.                                                  
       0 - (no example)                                                    
                                                                           
   If you select one of the examples, the correct answer for each          
   interactive question will be supplied after the question.               
|---- Enter an integer value in the range 0 to 15                 
3                                                                       
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ The example problem is                                               $
   $                                                                      $
   $         - (D(x,y)QQx)x - (D(x,y)QQy)y = lambda*QQ                    $
   $                                                                      $
   $ in a parallelogram, with dQQ/dn=0 on the left side, and QQ=0 on      $
   $ the other three sides, and D(x,y) defined discontinuously across     $
   $ a curved interface, as shown below:                                  $
   $                                  QQ=0                                $
   $             (1,2) ---------------------------------------- (3,2)     $
   $                  / +                                    /            $
   $                 /     +                                /             $
   $                /         +                            /              $
   $               /             +          D=1           /               $
   $              /                +                     /                $
   $    dQQ/dn=0 /                  +                   / QQ=0            $
   $            /         D=5        +                 /                  $
   $           /                       +              /                   $
   $          /                           +          /                    $
   $         /                               +      /                     $
   $        /                                   +  /                      $
   $ (0,0) ---------------------------------------- (2,0)                 $
                                                                      [RETURN]
   $                       QQ=0                                           $
   $                                                                      $
   $ Here dQQ/dn = normal derivative of QQ                                $
   $      lambda = eigenvalue to be determined                            $
   $ We will find the smallest eigenvalue, about lambda = 7.61, but you   $
   $ can find all eigenvalues if desired, by making a small change to the $
   $ program later (see description of ITYPE parameter).                  $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
                                                                      [RETURN]
   In what follows, when you are told to enter a 'FORTRAN expression',     
   this means any valid FORTRAN expression of 65 characters or less.       
   In this expression, you may include references to FORTRAN function      
   subprograms.  You may define these functions line by line at the end    
   of the interactive session, when prompted, or add them later using an   
   editor.                                                                 
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you enter a "#" in the first column of any input line, this       +
   + instructs the interactive driver to read this and subsequent input   +
   + lines from the file "pde2d.in".  A "#" in the first column of an     +
   + input line in the file "pde2d.in" (or an end-of-file) instructs the  +
   + driver to switch back to interactive input.                          +
   +                                                                      +
   + All lines input during an interactive session are echo printed to    +
   + a file "echo.out".  You may want to modify this file and rename it   +
   + "pde2d.in", and read some or all of your input from this file during +
   + your next interactive session.                                       +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                           
   PDE2D can solve problems with 0,1,2 or 3 space variables.  Enter the    
   dimension of your problem:                                              
                                                                      [RETURN]
                                                                           
     0 - to solve a time-dependent ordinary differential equation system,  
         or an algebraic or algebraic eigenvalue system                    
     1 - to solve problems in 1D intervals                                 
     2 - to solve problems in general 2D regions                           
     3 - to solve problems in a wide range of simple 3D regions            
                                                                           
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: 2                                                             $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter an integer value in the range 0 to 3                  
2                                                                       
   Which finite element method do you want to use:                         
                                                                           
   1. Galerkin method                                                      
   2. Collocation method                                                   
                                                                           
   The collocation method can handle a wide range of simple 2D regions;    
   the Galerkin method can handle completely general 2D regions.           
                                                                           
   Enter 1 or 2 to select a finite element method.                         
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you have a composite region, with discontinuous material          +
   + parameters, you should use the Galerkin method.  If your partial     +
   + differential equations and boundary conditions are difficult to put  +
   + into the "divergence" form required by the Galerkin method, or if    +
   + you have periodic boundary conditions, use the collocation method.   +
   + The collocation method produces an approximate solution with         +
   + continuous first derivatives; the Galerkin solution is continuous    +
   + but its first derivatives are not.                                   +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: 1                                                             $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
                                                                      [RETURN]
|---- Enter an integer value in the range 1 to 2                  
1                                                                       
   Is double precision mode to be used?  Double precision is recommended.  
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If double precision mode is used, variables and functions assigned   +
   + names beginning with a letter in the range A-H or O-Z will be DOUBLE +
   + PRECISION, and you should use double precision constants and FORTRAN +
   + expressions throughout; otherwise such variables and functions will  +
   + be of type REAL.  In either case, variables and functions assigned   +
   + names beginning with I,J,K,L,M or N will be of INTEGER type.         +
   +                                                                      +
   + It is possible to convert a single precision PDE2D program to double +
   + precision after it has been created, using an editor.  Just change   +
   + all occurrences of "real" to "double precision"                      +
   +                    " tdp" to "dtdp"  (note leading blank)            +
   + Any user-written code or routines must be converted "by hand", of    +
   + course.  To convert from double to single, reverse the changes.      +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: yes                                                           $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
yes
   If you don't want to read the FINE PRINT, default NPROB.                
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you want to solve several similar problems in the same run, set   +
   + NPROB equal to the number of problems you want to solve.  Then NPROB +
   + loops through the main program will be done, with IPROB=1,...,NPROB, +
   + and you can make the problem parameters vary with IPROB.  NPROB      +
   + defaults to 1.                                                       +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default NPROB                                      $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NPROB =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   PDE2D solves the time-dependent system (note: U,A,B,F,FB,GB,U0 may be   
   vectors, C,RHO may be matrices):                                        
                                                                           
     C(X,Y,T,U,Ux,Uy)*d(U)/dT = d/dX* A(X,Y,T,U,Ux,Uy)                     
                              + d/dY* B(X,Y,T,U,Ux,Uy)                     
                              -       F(X,Y,T,U,Ux,Uy)                     
                                                                           
   or the steady-state system:                                             
                                                                           
                          d/dX* A(X,Y,U,Ux,Uy)                             
                        + d/dY* B(X,Y,U,Ux,Uy)                             
                              = F(X,Y,U,Ux,Uy)                             
                                                                           
   or the linear and homogeneous eigenvalue system:                        
                                                                           
                          d/dX* A(X,Y,U,Ux,Uy)                             
                        + d/dY* B(X,Y,U,Ux,Uy)                             
                              = F(X,Y,U,Ux,Uy) + lambda*RHO(X,Y)*U         
                                                                           
   in an arbitrary two-dimensional region, R, with 'fixed' boundary        
   conditions on part of the boundary:                                     
                                                                           
                                                                      [RETURN]
         U = FB(X,Y,[T])                                                   
                                                                           
   and 'free' boundary conditions on the other part:                       
                                                                           
       A*nx + B*ny = GB(X,Y,[T],U,Ux,Uy)                                   
                                                                           
   For time-dependent problems there are also initial conditions:          
                                                                           
          U = U0(X,Y)   at T=T0                                            
                                                                           
   Here Ux,Uy represent the (vector) functions dU/dX,dU/dY, and (nx,ny)    
   represents the unit outward normal to the boundary.                     
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If your PDEs involve the solution at points other than (X,Y), the    +
   + function                                                             +
   +             (D)OLDSOL2(IDER,IEQ,XX,YY,KDEG)                          +
   + will interpolate (using interpolation of degree KDEG=1,2 or 3) to    +
   + (XX,YY) the function saved in UOUT(*,*,IDER,IEQ,ISET) on the last    +
   + time step or iteration (ISET) for which it has been saved.  Thus,    +
   + for example, if IDER=1, this will return the latest value of         +
   + component IEQ of the solution at (XX,YY), assuming this has not been +
                                                                      [RETURN]
   + modified using UPRINT...  If your equations involve integrals of the +
   + solution, for example, you can use (D)OLDSOL2 to approximate these   +
   + using the solution from the last time step or iteration.             +
   +                                                                      +
   + CAUTION: For a steady-state or eigenvalue problem, you must reset    +
   + NOUT=1 if you want to save the solution each iteration.              +
   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   + A system of NEQN complex partial differential equations must be      +
   + written as a system of 2*NEQN real equations, by separating the      +
   + equations into their real and imaginary parts.  However, note that   +
   + the complex arithmetic abilities of FORTRAN can be used to simplify  +
   + this separation.  For example, the complex PDE:                      +
   +       I*(Uxx+Uyy) = 1/(1+U**10),  where U = UR + UI*I                +
   + would be difficult to split up analytically, but using FORTRAN       +
   + expressions it is easy:                                              +
   +   A1 = -UIx,  B1 = -UIy,  F1 =  REAL(1.0/(1.0+CMPLX(UR,UI)**10))     +
   +   A2 =  URx,  B2 =  URy,  F2 = AIMAG(1.0/(1.0+CMPLX(UR,UI)**10))     +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   You may now define global parameters, which may be referenced in any    
   of the "FORTRAN expressions" you input throughout the rest of this      
   interactive session.  You will be prompted alternately for parameter    
   names and their values; enter a blank name when you are finished.       
                                                                      [RETURN]
                                                                           
   Parameter names are valid FORTRAN variable names, starting in           
   column 1.  Thus each name consists of 1 to 6 alphanumeric characters,   
   the first of which must be a letter.  If the first letter is in the     
   range I-N, the parameter must be an integer.                            
                                                                           
   Parameter values are either FORTRAN constants or FORTRAN expressions    
   involving only constants and global parameters defined on earlier       
   lines.  They may also be functions of the problem number IPROB, if      
   you are solving several similar problems in one run (NPROB > 1).  Note  
   that you are defining global CONSTANTS, not functions; e.g., parameter  
   values may not reference any of the independent or dependent variables  
   of your problem.                                                        
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you define other parameters here later, using an editor, you must +
   + add them to COMMON block /PARM8Z/ everywhere this block appears, if  +
   + they are to be "global" parameters.                                  +
   +                                                                      +
   + The variable PI is already included as a global parameter, with an   +
   + accurate value 3.14159...                                            +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                      [RETURN]
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: D1                                                            $
   $           5                                                          $
   $        D2                                                            $
   $           1                                                          $
   $      [blank line]                                                    $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
 Parameter name = (type blank line to terminate)
D1     
  D1     =
|----Enter constant or FORTRAN expression-----------------------|
5                                                                
 Parameter name = (type blank line to terminate)
D2     
  D2     =
|----Enter constant or FORTRAN expression-----------------------|
1                                                                
 Parameter name = (type blank line to terminate)
       
   If you don't want to read the FINE PRINT, enter 'no'.                   
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Do you want to be given a chance to write a FORTRAN block before the +
   + definitions of many functions?  If you answer 'no', you will still   +
   + be given a chance to write code before the definition of the PDE     +
   + coefficients, but not other functions.  Of course, you can always    +
   + add code later directly to the resulting program, using an editor.   +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   Now, the first step in creating a 2D PDE2D program is to construct      
   an initial triangulation of the region R over which the partial         
   differential equations are to be solved.  This initial triangulation    
   can later be refined and graded to your specifications.                 
                                                                           
   The boundary of the region R should be divided into distinct            
   (curved or straight) arcs, each of which is smooth with smooth          
   boundary conditions.  Thus at every corner or point where the boundary  
   conditions have a discontinuity or change type, a new boundary arc      
   should begin.  Each arc is assigned a unique integer arc number, which  
   is arbitrary except that it must be negative if 'fixed' boundary        
   conditions are specified on that arc, and positive (but < 1000) if      
   'free' boundary conditions are specified.                               
                                                                           
   'Fixed' means that all unknowns are specified on that boundary          
   (Dirichlet type conditions) and 'free' refers to more general boundary  
   conditions, as defined earlier.  These more general conditions include  
   specification of the boundary flux (or normal derivative in the case    
   of a Laplacian operator).                                               
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If some, but not all, of the unknowns are specified on a boundary    +
                                                                      [RETURN]
   + arc, that arc should be considered 'free', since even 'fixed'        +
   + type conditions of the form:                                         +
   +                   Ui = FBi(X,Y,[T])                                  +
   + can be expressed as 'free' boundary conditions in the form:          +
   +               Ai*nx + Bi*ny = zero(Ui-FBi(X,Y,[T]))                  +
   + where zero(f) = Big_Number*f is a PDE2D-supplied function.           +
   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   + If Ai=Bi=0 (eg, if the PDE is first order), then setting GBi=0 is    +
   + equivalent to setting "no" boundary condition (which is sometimes    +
   + appropriate for first order PDEs), because the boundary condition    +
   + Ai*nx + Bi*ny = GBi reduces to 0=0.                                  +
   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   + Note: while 'fixed' boundary conditions are enforced exactly (at the +
   + nodes), 'free' boundary conditions are not; the greater the overall  +
   + solution accuracy, the more closely they are satisfied.              +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                           
   There are 3 options for generating the initial triangulation:           
                                                                           
   1. If the region R is a rectangle with sides parallel to the X and Y    
      axes, then the initial triangulation can be generated automatically. 
   2. If the region R can be conveniently described by parametric          
                                                                      [RETURN]
      equations in the form:                                               
                      X = X(P,Q)                                           
                      Y = Y(P,Q)                                           
      where P and Q have constant limits (for example, if X=P*COS(Q),      
      Y=P*SIN(Q), P and Q will represent polar coordinates), then the      
      initial triangulation can also be generated automatically.           
   3. For more general regions, you will need to create an initial         
      triangulation by hand.                                               
                                                                           
   Enter INTRI = 1,2 or 3 to choose an initial triangulation option.       
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ To the three sides where QQ=0, we assign a negative arc number (-1), $
   $ and to the left side, where the normal derivative is zero, we assign $
   $ positive arc number 1.                                               $
   $                                                                      $
   $ enter: INTRI = 3                                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  INTRI =
|---- Enter an integer value in the range 1 to 3                  
3                                                                       
   For a general region, an initial triangulation is constructed           
   which generally consists of only as many triangles as needed to define  
   the region and to satisfy the following rules (triangles adjacent       
   to a curved boundary may be considered to have one curved edge):        
                                                                           
   1. The end points of each arc are included as vertices in the           
      triangulation.                                                       
                                                                           
   2. No vertex of any triangle may touch another in a point which is      
      not a vertex of the other triangle.                                  
                                                                           
   3. No triangle may have all three vertices on the boundary.             
                                                                           
   Now enter the number of vertices in the initial triangulation (NV0)     
   and the vertices (VXY(1,i),VXY(2,i)), i=1,...,NV0, when prompted.       
                                                                           
   The vertices may be numbered in any order, but that order will define   
   the vertex numbers referred to in the next list.                        
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If the elements of VXY, IABC and IARC are defaulted, these initial   +
   + triangulation arrays will be read from the file 'pde2d.tri'; in this +
                                                                      [RETURN]
   + case the values of NV0 and NT0 entered below must be the same as     +
   + those in the file.                                                   +
   +                                                                      +
   + A file 'pde2d.tri' is normally created when the final triangulation  +
   + from another program (cases INTRI=1,2 or 3) is dumped.  Reset IOTRI  +
   + to 1 in the other program, to cause the final triangulation to be    +
   + dumped into pde2d.tri.                                               +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ We do not want any initial triangles to straddle the interface, so   $
   $ we construct an initial triangulation of 8 triangles                 $
   $                                                                      $
   $             (1,2) 4--------------------------------------3 (3,2)     $
   $                  /*+       *                         *  /            $
   $                 /     +             *            *     /             $
   $                /  *      +         (2.2,1.4) 7        /              $
   $               /             +           *            /               $
   $              /    *           +     *        *      /                $
   $             /                  6 (1.5,1)           /                 $
   $            /      *       *     +            *    /                  $
   $           /           *           +              /                   $
   $          /        5 (0.8,0.6)        +       *  /                    $
                                                                      [RETURN]
   $         /     *            *            +      /                     $
   $        /  *                         *      + */                      $
   $ (0,0) 1--------------------------------------2 (2,0)                 $
   $                                                                      $
   $ where the seven vertices are numbered as indicated.                  $
   $ enter: NV0 = 7                                                       $
   $                                                                      $
   $        VXY(1,1) = 0     VXY(2,1) = 0                                 $
   $        VXY(1,2) = 2     VXY(2,2) = 0                                 $
   $        VXY(1,3) = 3     VXY(2,3) = 2                                 $
   $        VXY(1,4) = 1     VXY(2,4) = 2                                 $
   $        VXY(1,5) = 0.8   VXY(2,5) = 0.6                               $
   $        VXY(1,6) = 1.5   VXY(2,6) = 1                                 $
   $        VXY(1,7) = 2.2   VXY(2,7) = 1.4                               $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NV0 =
|---- Enter an integer value in the range 4 to +INFINITY          
7                                                                       


  VXY(1,1) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
0                                                                
  VXY(2,1) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
0                                                                


  VXY(1,2) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  VXY(2,2) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
0                                                                


  VXY(1,3) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
3                                                                
  VXY(2,3) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                


  VXY(1,4) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1                                                                
  VXY(2,4) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                


  VXY(1,5) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
0.8                                                              
  VXY(2,5) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
0.6                                                              


  VXY(1,6) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1.5                                                              
  VXY(2,6) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1                                                                


  VXY(1,7) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2.2                                                              
  VXY(2,7) =                         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1.4                                                              
   Now enter the number of triangles in the initial triangulation (NT0),   
   and for each triangle k, give the vertex numbers of vertices a,b,c:     
               IABC(1,k) , IABC(2,k) , IABC(3,k)                           
   where the third vertex (c) is not on the boundary of R (or on a curved  
   interface arc), and the number,                                         
                           IARC(k)                                         
   of the arc cut off by the base, ab, of the triangle.  Put IARC(k)=0     
   if the base of triangle k does not intersect any boundary (or curved    
   interface) arc.  Recall that negative arc numbers correspond to         
   'fixed' boundary conditions, and positive arc numbers ( < 1000)         
   correspond to 'free' boundary conditions.                               
                                                                           
   The order of this list defines the initial triangle numbers.            
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Any of the partial differential equation coefficients or other       +
   + functions of X and Y which you are asked to supply later may be      +
   + defined as functions of a variable 'KTRI', which holds the number    +
   + of the INITIAL triangle in which (X,Y) lies.  This is useful when    +
   + the region is a composite of different materials, so that some       +
   + material parameters have different values in different subregions.   +
   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                                                      [RETURN]
   + If any interfaces between subregions are curved, the interface arcs  +
   + may be assigned unique arc numbers of 1000 and above, and treated    +
   + like boundary arcs in the initial triangulation definition.  (You    +
   + will not be allowed to specify boundary conditions on them, however.)+
   + The triangulation refinement will follow the interface arcs, so that +
   + no final triangles will straddle an interface.                       +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ Recall that the initial triangulation is:                            $
   $                                   arc -1                             $
   $                   4--------------------------------------3           $
   $                  /*+       *             VI          *  /            $
   $                 /     +             *            *     /             $
   $                /  *      +      VII          7        /              $
   $               /             +           *        V   /               $
   $              /    *   III     +     *        *      /                $
   $      arc 1  /                  6                   / arc -1          $
   $            /      *       *     +     VIII   *    /                  $
   $           /  IV       *           +              /                   $
   $          /        5           II     +       *  /                    $
   $         /     *      I     *            +      /                     $
   $        /  *                         *      + */                      $
                                                                      [RETURN]
   $       1--------------------------------------2                       $
   $                    arc -1                                            $
   $                                                                      $
   $ where I,II,...,VIII are the initial triangle numbers.                $
   $                                                                      $
   $ The curved interior interface is assigned arc number 1001, while     $
   $ the boundary arcs are assigned numbers as shown.                     $
   $ Note that D(X,Y)=5 in triangles number 1-4,                          $
   $           D(X,Y)=1 in triangles number 5-8                           $
   $ enter:  NT0 = 8                                                      $
   $                                                                      $
   $   IABC(1,1) = 1   IABC(2,1) = 2   IABC(3,1) = 5   IARC(1) = -1       $
   $   IABC(1,2) = 2   IABC(2,2) = 6   IABC(3,2) = 5   IARC(2) = 1001     $
   $   IABC(1,3) = 6   IABC(2,3) = 4   IABC(3,3) = 5   IARC(3) = 1001     $
   $   IABC(1,4) = 4   IABC(2,4) = 1   IABC(3,4) = 5   IARC(4) = 1        $
   $   IABC(1,5) = 2   IABC(2,5) = 3   IABC(3,5) = 7   IARC(5) = -1       $
   $   IABC(1,6) = 3   IABC(2,6) = 4   IABC(3,6) = 7   IARC(6) = -1       $
   $   IABC(1,7) = 4   IABC(2,7) = 6   IABC(3,7) = 7   IARC(7) = 1001     $
   $   IABC(1,8) = 6   IABC(2,8) = 2   IABC(3,8) = 7   IARC(8) = 1001     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NT0 =
|---- Enter an integer value in the range 3 to +INFINITY          
8                                                                       


  IABC(1,1) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1                                                                
  IABC(2,1) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  IABC(3,1) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
5                                                                
  IARC(1) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
-1                                                               


  IABC(1,2) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  IABC(2,2) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
6                                                                
  IABC(3,2) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
5                                                                
  IARC(2) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1001                                                             


  IABC(1,3) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
6                                                                
  IABC(2,3) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
4                                                                
  IABC(3,3) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
5                                                                
  IARC(3) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1001                                                             


  IABC(1,4) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
4                                                                
  IABC(2,4) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1                                                                
  IABC(3,4) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
5                                                                
  IARC(4) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1                                                                


  IABC(1,5) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  IABC(2,5) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
3                                                                
  IABC(3,5) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
7                                                                
  IARC(5) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
-1                                                               


  IABC(1,6) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
3                                                                
  IABC(2,6) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
4                                                                
  IABC(3,6) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
7                                                                
  IARC(6) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
-1                                                               


  IABC(1,7) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
4                                                                
  IABC(2,7) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
6                                                                
  IABC(3,7) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
7                                                                
  IARC(7) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1001                                                             


  IABC(1,8) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
6                                                                
  IABC(2,8) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  IABC(3,8) =                        (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
7                                                                
  IARC(8) =               (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
1001                                                             
   Are there any curved boundary (or curved interface) arcs?               
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: yes                                                           $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
yes
   Enter the arc number (IARC) of a curved arc.                            
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: IARC = 1001                                                   $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  IARC =
|---- Enter an integer value                                      
1001                                                                    
   You must either supply the parametric equations (X(S),Y(S)) of this arc 
   or else provide the coordinates (PXY(1,i),PXY(2,i)), i=1,...,NPTS,      
   of several points on the arc through which a smooth curve will be       
   drawn.  Do you want to supply the parametric equations?                 
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   Enter the number of points on the arc (NPTS) to be input, and the       
   coordinates (PXY(1,i),PXY(2,i)),i=1,...,NPTS, of these points, when     
   prompted.  The points can be ordered in either direction along the      
   arc, but the first and last points must be the endpoints of the arc.    
   A smooth curve will be drawn through these points.                      
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + To guarantee that the arc drawn through these user-supplied points   +
   + does not miss any vertices in the initial triangulation which are    +
   + supposed to lie on this arc, any such vertices should be included in +
   + the user-supplied points.                                            +
   +                                                                      +
   + If the arc makes a sharp turn at one of the input points, so that    +
   + drawing a smooth curve through that point is not appropriate, you    +
   + can include this point twice (consecutively) in the input list, and  +
   + continuity of the derivatives will not be imposed there.             +
   +                                                                      +
   + The parametric equations (X(S),Y(S)) of the arc drawn are computed   +
   + so that S ranges from 0 to 1 and is approximately, but not exactly,  +
   + proportional to distance along the arc, and X(S) and Y(S) are        +
   + cubic spline interpolants to the X and Y coordinates of the points.  +
   +                                                                      +
                                                                      [RETURN]
   + If a boundary curve is very wiggly, you may need to increase the     +
   + value of NBPT8Z in the PARAMETER statement in the main program, so   +
   + that this curve will be accurately drawn in the graphical output.    +
   + (Note: NBPT8Z does not affect the internal representation of a       +
   + curve, only its graphical representation.)                           +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ We will supply 5 points to approximately define the interface, so    $
   $ enter: NPTS = 5                                                      $
   $                                                                      $
   $        PXY(1,1) = 2    PXY(2,1) = 0                                  $
   $        PXY(1,2) = 1.6  PXY(2,2) = 0.5                                $
   $        PXY(1,3) = 1.5  PXY(2,3) = 1                                  $
   $        PXY(1,4) = 1.4  PXY(2,4) = 1.5                                $
   $        PXY(1,5) = 1    PXY(2,5) = 2                                  $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NPTS =
|---- Enter an integer value in the range 2 to 1000               
5                                                                       


  PXY(1,1) =                      
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
  PXY(2,1) =                      
|----Enter constant or FORTRAN expression-----------------------|
0                                                                


  PXY(1,2) =                      
|----Enter constant or FORTRAN expression-----------------------|
1.6                                                              
  PXY(2,2) =                      
|----Enter constant or FORTRAN expression-----------------------|
0.5                                                              


  PXY(1,3) =                      
|----Enter constant or FORTRAN expression-----------------------|
1.5                                                              
  PXY(2,3) =                      
|----Enter constant or FORTRAN expression-----------------------|
1                                                                


  PXY(1,4) =                      
|----Enter constant or FORTRAN expression-----------------------|
1.4                                                              
  PXY(2,4) =                      
|----Enter constant or FORTRAN expression-----------------------|
1.5                                                              


  PXY(1,5) =                      
|----Enter constant or FORTRAN expression-----------------------|
1                                                                
  PXY(2,5) =                      
|----Enter constant or FORTRAN expression-----------------------|
2                                                                
   Are there any more curved arcs?                                         
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   How many triangles (NTF) are desired for the final triangulation?       
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: NTF = 350                                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NTF =
|---- Enter an integer value in the range 8 to +INFINITY          
350                                                                     
   Enter a FORTRAN expression for TRIDEN(X,Y), which controls the          
   grading of the triangulation.  TRIDEN should be largest where the       
   triangulation is to be most dense.  The default is TRIDEN(X,Y)=1.0      
   (a uniform triangulation).                                              
                                                                           
   TRIDEN may also be a function of the initial triangle number KTRI.      
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default TRIDEN                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  TRIDEN =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   If you don't want to read the FINE PRINT, enter 'no'.                   
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Do you want the triangulation to be graded adaptively?               +
   +                                                                      +
   + If you answer "yes", make sure there is no "pde2d.adp" file in the   +
   + working directory the first time you run the program, then run the   +
   + program two or more times, possibly increasing NTF each time.  On    +
   + the first run, the triangulation will be graded as guided by         +
   + TRIDEN(X,Y), but on each subsequent run, information output by the   +
   + previous run to "pde2d.adp" will be used to guide the grading of the +
   + new triangulation.                                                   +
                                                                          +
   + If ADAPT=.TRUE., after each run a file "pde2d.adp" is written        +
   + which tabulates the values of the magnitude of the gradient of the   +
   + solution (at the last time step or iteration) at an output NXP8Z by  +
   + NYP8Z grid of points (NXP8Z and NYP8Z are set to 101 in a PARAMETER  +
   + statement in the main program, so they can be changed if desired).   +
   + If NEQN > 1, a normalized average of the gradients of the NEQN       +
   + solution components is used.                                         +
   +                                                                      +
   + You can do all the "runs" in one program, by setting NPROB > 1.      +
                                                                      [RETURN]
   + Each pass through the DO loop, PDE2D will read the gradient values   +
   + output the previous pass.  If RESTRT=.TRUE., GRIDID=.FALSE., and     +
   + T0,TF are incremented each pass through the DO loop, it is possible  +
   + in this way to solve a time-dependent problem with an adaptive,      +
   + moving, grid.                                                        +
   +                                                                      +
   + Increase the variable EXAG from its default value of 1.5 if you want +
   + to exaggerate the grading of an adaptive triangulation (make it less +
   + uniform).  EXAG should normally not be larger than about 2.0.        +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                           
   If you don't want to read the FINE PRINT, enter 'no'.                   
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   If you don't want to read the FINE PRINT, default SHAPE.                
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Enter a FORTRAN expression for SHAPE(X,Y), which controls the        +
   + approximate shape of the triangles.  The triangulation refinement    +
   + will proceed with the goal of generating triangles with an average   +
   + height to width ratio of approximately SHAPE(X,Y) near the point     +
   + (X,Y).  SHAPE must be positive.  The default is SHAPE(X,Y)=1.0.      +
   +                                                                      +
   + SHAPE may also be a function of the initial triangle number KTRI.    +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default SHAPE                                      $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  SHAPE =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   If you don't want to read the FINE PRINT, enter ISOLVE = 4.             
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + The following linear system solvers are available:                   +
   +                                                                      +
   + 1. Band method                                                       +
   +               The band solver uses a reverse Cuthill-McKee ordering. +
   + 2. Frontal method                                                    +
   +               This is an out-of-core version of the band solver.     +
   + 3. Jacobi bi-conjugate gradient method                               +
   +               This is a preconditioned bi-conjugate gradient, or     +
   +               Lanczos, iterative method.  (This solver is MPI-       +
   +               enhanced, if MPI is available.)  If you want to        +
   +               override the default convergence tolerance, set a      +
   +               new relative tolerance CGTL8Z in the main program.     +
   + 4. Sparse direct method                                              +
   +               This is based on Harwell Library routines MA27/MA37,   +
   +               developed by AEA Industrial Technology at Harwell      +
   +               Laboratory, Oxfordshire, OX11 0RA, United Kingdom      +
   +               (used by permission).                                  +
   + 5. Local solver                                                      +
   +               Choose this option ONLY if alternative linear system   +
                                                                      [RETURN]
   +               solvers have been installed locally.  See subroutines  +
   +               (D)TD3M, (D)TD3N in file (d)subs.f for instructions    +
   +               on how to add local solvers.                           +
   + 6. MPI-based parallel band solver                                    +
   +               This is a parallel solver which runs efficiently on    +
   +               multiple processor machines, under MPI.  It is a       +
   +               band solver, with the matrix distributed over the      +
   +               available processors.  Choose this option ONLY if the  +
   +               solver has been activated locally.  See subroutine     +
   +               (D)TD3O in file (d)subs.f for instructions on how to   +
   +               activate this solver and the MPI-enhancements to the   +
   +               conjugate gradient solver.                             +
   +                                                                      +
   + Enter ISOLVE = 1,2,3,4,5 or 6 to select a linear system solver.      +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                           
   If you don't want to read the FINE PRINT, enter ISOLVE = 4.             
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: ISOLVE = 2                                                    $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  ISOLVE =
|---- Enter an integer value in the range 1 to 6                  
2                                                                       
   Enter the element degree (1,2,3 or 4) desired.  A suggested value is    
   IDEG = 3.                                                               
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + A negative value for IDEG can be entered, and elements of degree     +
   + ABS(IDEG) will be used, with a lower order numerical integration     +
   + scheme.  This results in a slight increase in speed, but negative    +
   + values of IDEG are normally not recommended.                         +
   +                                                                      +
   + The spatial discretization error is O(h**2), O(h**3), O(h**4) or     +
   + O(h**5) when IDEG = 1,2,3 or 4, respectively, is used, where h is    +
   + the maximum triangle diameter, even if the region is curved.         +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ If we want to later change ITYPE to 4 and compute all eigenvalues,   $
   $ IDEG=-1 or -3 are the best choices, for a symmetric 2D problem.      $
   $ enter: IDEG = -3                                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  IDEG =
|---- Enter an integer value in the range -4 to 4                 
-3                                                                      
   What type of PDE problem do you want to solve?                          
                                                                           
      1. a steady-state (time-independent) problem                         
      2. a time-dependent problem                                          
      3. a linear, homogeneous eigenvalue problem                          
                                                                           
   Enter 1,2 or 3 to select a problem type.                                
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: 3                                                             $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter an integer value in the range 1 to 3                  
3                                                                       
   The shifted inverse power method will be used to find one eigenvalue    
   and the corresponding eigenfunction.                                    
                                                                           
   You can later find ALL eigenvalues (without eigenfunctions), including  
   complex eigenvalues, by changing ITYPE from 3 to 4 below in the FORTRAN 
   program.  All eigenvalues will be written to a file 'pde2d.eig'; the 50 
   eigenvalues closest to P8Z (P8Z is 0 by default but can be set by the   
   user below) will be printed and also available in the main program as   
   EVR8Z(k) + i*EVI8Z(k), for k=1,...,min(50,N).                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Caution: for ITYPE=4, the memory and computer time requirements are  +
   + much greater than for ITYPE=3, for a given grid.  However, this      +
   + calculation runs efficiently on multi-processor machines, under MPI. +
   +                                                                      +
   + The calculation is also dramatically faster for symmetric 1D         +
   + Galerkin problems, and symmetric 2D Galerkin problems (IDEG=-1,-3)   +
   + because the algorithm can take advantage of the band structure of A  +
   + in finding all eigenvalues of the generalized eigenvalue problem     +
   + Az=lambda*Bz, but only when A is symmetric and B is diagonal (hence  +
   + the requirement that IDEG=-1 or -3 for 2D Galerkin problems; the RHO +
   + matrix must also be diagonal (if NEQN > 1) and of constant sign).    +
   + High precision is STRONGLY recommended in these cases.               +
                                                                      [RETURN]
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                      [RETURN]
   If you don't want to read the FINE PRINT below, enter 'no'.             
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Are your eigenvalue PDEs complex?  If 'yes', you must write each of  +
   + the unknown eigenfunctions, but NOT the eigenvalue (i.e., pretend    +
   + the eigenvalue is real even though it may not be), in terms of its   +
   + real and imaginary parts, and separate the equations into real and   +
   + imaginary parts.  Then it is assumed that your unknowns represent    +
   + alternately the real and imaginary parts of the eigenfunctions, and  +
   + that your equations represent alternately the real and imaginary     +
   + parts of the eigenvalue differential equations.  Note that your      +
   + first equation must represent exactly the real part of the first     +
   + complex PDE, your second equation must represent exactly the         +
   + imaginary part, etc.  You must not reorder the equations, nor        +
   + multiply any equation through by a constant.                         +
   +                                                                      +
   + Even if your eigenvalue PDEs are real, if a desired eigenvalue/      +
   + eigenfunction is complex, you should answer 'yes' and treat the      +
   + PDEs as if they were complex, as outlined above.  If you are going   +
   + to set ITYPE=4 to find all eigenvalues without eigenfunctions,       +
   + however, you should answer 'no' even if some eigenvalues are complex.+
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                      [RETURN]
                                                                           
   If you don't want to read the FINE PRINT above, enter 'no'.             
                                                                           
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   The (shifted) inverse power method will be used to find the eigenvalue  
   closest to EV0R; enter a value for EV0R.  The closer you choose EV0R    
   to the desired eigenvalue, the faster the convergence will be.  The     
   default is EV0R = 0.0, that is, the smallest eigenvalue (in absolute    
   value) is found.                                                        
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default EV0R                                       $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  EV0R =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   How many iterations (NSTEPS) of the inverse power method do you want    
   to do?  NSTEPS defaults to 25.                                          
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + After convergence of the inverse power method, the solution each     +
   + iteration will be a normalized eigenfunction corresponding to the    +
   + eigenvalue closest to EV0R (or EV0R+EV0I*I) and this eigenvalue will +
   + be printed.  In the FORTRAN program created by the preprocessor,     +
   + the last computed estimate of this eigenvalue will be returned as    +
   + EVLR8Z (or EVLR8Z+EVLI8Z*I), and ECON8Z will be .TRUE. if the        +
   + inverse power method has converged.                                  +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default NSTEPS                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NSTEPS =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   How many differential equations (NEQN) are there in your problem?       
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: NEQN = 1                                                      $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NEQN =
|---- Enter an integer value in the range 1 to 99                 
1                                                                       
   You may now choose names for the component(s) of the (possibly vector)  
   solution U.  Each must be an alphanumeric string of one to three        
   characters, beginning with a letter in the range A-H or O-Z.  The       
   variable names X,Y,T,S,A and B must not be used.  The name should       
   start in column 1.                                                      
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: U1 = QQ                                                       $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
 U1 =
QQ  
   PDE2D finds an eigenvalue, lambda, of the (linear and homogeneous)      
   equation:                                                               
                                                                           
                  d/dX* A(X,Y,QQ,QQx,QQy)                                  
                + d/dY* B(X,Y,QQ,QQx,QQy)                                  
                      = F(X,Y,QQ,QQx,QQy)                                  
                      + lambda*RHO(X,Y)*QQ                                 
                                                                           
   with 'fixed' boundary condition:                                        
                                                                           
         QQ = 0                                                            
                                                                           
   or 'free' boundary condition:                                           
                                                                           
         A*nx + B*ny = GB(X,Y,QQ,QQx,QQy)                                  
                                                                           
   where QQ(X,Y) is the unknown and F,A,B,RHO,GB are user-supplied         
   functions.                                                              
                                                                           
   note:                                                                   
         (nx,ny) = unit outward normal to the boundary                     
         QQx = d(QQ)/dX                                                    
                                                                      [RETURN]
         QQy = d(QQ)/dY                                                    
                                                                           
   Is this problem symmetric?  If you don't want to read the FINE PRINT,   
   it is safe to enter 'no'.                                               
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + This problem is called symmetric if the matrix                       +
   +                                                                      +
   +                F.QQ     F.QQx     F.QQy                              +
   +                A.QQ     A.QQx     A.QQy                              +
   +                B.QQ     B.QQx     B.QQy                              +
   +                                                                      +
   + is always symmetric, where F.QQ means d(F)/d(QQ), and similarly      +
   + for the other terms.  In addition, GB must not depend on QQx,QQy.    +
   +                                                                      +
   + The memory and execution time are halved if the problem is known to  +
   + be symmetric.                                                        +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: yes                                                           $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
yes
   You may calculate one or more integrals (over the entire region) of     
   some functions of the solution and its derivatives.  How many integrals 
   (NINT), if any, do you want to calculate?                               
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + In the FORTRAN program created by the preprocessor, the computed     +
   + values of the integrals will be returned in the vector SINT8Z.  If   +
   + several iterations or time steps are done, only the last computed    +
   + values are saved in SINT8Z (all values are printed).                 +
   +                                                                      +
   + A limiting value, SLIM8Z(I), for the I-th integral can be set        +
   + below in the main program.  The computations will then stop          +
   + gracefully whenever SINT8Z(I) > SLIM8Z(I), for any I=1...NINT.       +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: NINT = 0                                                      $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NINT =
|---- Enter an integer value in the range 0 to 20                 
0                                                                       
   You may calculate one or more boundary integrals (over the entire       
   boundary) of some functions of the solution and its derivatives.  How   
   many boundary integrals (NBINT), if any, do you want to calculate?      
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + In the FORTRAN program created by the preprocessor, the computed     +
   + values of the integrals will be returned in the vector BINT8Z.  If   +
   + several iterations or time steps are done, only the last computed    +
   + values are saved in BINT8Z (all values are printed).                 +
   +                                                                      +
   + A limiting value, BLIM8Z(I), for the I-th boundary integral can be   +
   + set below in the main program.  The computations will then stop      +
   + gracefully whenever BINT8Z(I) > BLIM8Z(I), for any I=1...NBINT.      +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: NBINT = 0                                                     $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NBINT =
|---- Enter an integer value in the range 0 to 20                 
0                                                                       
   Now enter FORTRAN expressions to define the PDE coefficients.           
   RHO may be a function of X,Y.  The other coefficients may be functions  
   of                                                                      
                                                                           
                      X,Y,QQ,QQx,QQy                                       
                                                                           
   All coefficients may also reference the initial triangle number KTRI.   
                                                                           
   Recall that the PDE has the form                                        
                                                                           
                 d/dX*A + d/dY*B = F + lambda*RHO*QQ                       
                                                                           
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ The partial differential equation may be written                     $
   $                                                                      $
   $  d/dX*(-D(X,Y)*QQx) + d/dY*(-D(X,Y)*QQy) = lambda*1.0*QQ             $
   $                                                                      $
   $ When asked if you want to write a FORTRAN block,                     $
   $ enter: yes                                                           $
   $   then, when prompted, define D as a function of the initial         $
   $   triangle number, KTRI:                                             $
   $          IF (KTRI.LE.4) D = D1                                       $
                                                                      [RETURN]
   $          IF (KTRI.GE.5) D = D2                                       $
   $        [blank line]                                                  $
   $   then enter the following, when prompted:                           $
   $    F = 0.0        A = -D*QQx       B = -D*QQy       RHO = 1.0        $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

  Do you want to write a FORTRAN block to define some parameters to be
   used in the definition of these coefficients?
|---- Enter yes or no
yes
 Remember to begin FORTRAN statements in column 7
|-----7-----Input FORTRAN now (type blank line to terminate)-----------|
      IF (KTRI.LE.4) D = D1                                             
      IF (KTRI.GE.5) D = D2                                             
                                                                        
 F =         (Press [RETURN] to default to 0)
|----Enter constant or FORTRAN expression-----------------------|
0.0                                                              
 A =         (Press [RETURN] to default to 0)
|----Enter constant or FORTRAN expression-----------------------|
-D*QQx                                                           
 B =         (Press [RETURN] to default to 0)
|----Enter constant or FORTRAN expression-----------------------|
-D*QQy                                                           
  RHO =
|----Enter constant or FORTRAN expression-----------------------|
1.0                                                              
   If you don't want to read the FINE PRINT, default the initial values.   
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Now the initial values for the inverse power method may be defined   +
   + using FORTRAN expressions.  They may be functions of X and Y, and    +
   + also of the initial triangle number KTRI.                            +
   +                                                                      +
   + By default, the initial values are generated by a random number      +
   + generator.  This virtually eliminates any possibility of convergence +
   + to the wrong eigenvalue, due to an unlucky choice of initial values. +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ Press [RETURN] to default QQ0                                        $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
 QQ0 =         (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   If you don't want to read the FINE PRINT, enter 'no'.                   
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Do you want to read the initial conditions from the restart file,    +
   + if it exists (and use the conditions supplied above if it does not   +
   + exist)?                                                              +
   +                                                                      +
   + If so, PDE2D will dump the final solution at the end of each run     +
   + into a restart file "pde2d.res".  Thus the usual procedure for       +
   + using this dump/restart option is to make sure there is no restart   +
   + file in your directory left over from a previous job, then the       +
   + first time you run this job, the initial conditions supplied above   +
   + will be used, but on the second and subsequent runs the restart file +
   + from the previous run will be used to define the initial conditions. +
   +                                                                      +
   + You can do all the "runs" in one program, by setting NPROB > 1.      +
   + Each pass through the DO loop, T0,TF,NSTEPS and possibly other       +
   + parameters may be varied, by making them functions of IPROB.         +
   +                                                                      +
   + If the 2D or 3D collocation method is used, the coordinate           +
   + transformation should not change between dump and restart.           +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                      [RETURN]
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   Since this is a homogeneous eigenvalue problem, FB is assumed to be 0   
   on all boundaries where 'fixed' boundary conditions are specified.      
   Now the 'free' boundary conditions are described.                       
                                                                           
   Are there any boundary arcs with positive (but < 1000) arc numbers,     
   where nonzero 'free' boundary conditions must be specified?  (The       
   boundary conditions on arcs with positive numbers default to GB=0.)     
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ On the only arc with positive arc number (1), the boundary condition $
   $ is GB = A*nx+B*ny = -D*QQx*nx - D*QQy*ny = -D*dQQ/dn = 0             $
   $ and GB can be defaulted to 0, so                                     $
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   If you don't want to read the FINE PRINT, default all of the following  
   variables.                                                              
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Normally, PDE2D saves the values of QQ,A,B at the output points.     +
   + If different variables are to be saved (for later printing or        +
   + plotting) the following functions can be used to re-define the       +
   + output variables:                                                    +
   +    define UPRINT(1) to replace QQ                                    +
   +           APRINT(1)            A                                     +
   +           BPRINT(1)            B                                     +
   + Each function may be a function of                                   +
   +                                                                      +
   +           X,Y,QQ,QQx,QQy,A,B and (if applicable) T                   +
   +                                                                      +
   + Each may also be a function of the initial triangle number KTRI and  +
   + the integral estimates SINT(1),...,BINT(1),...                       +
   +                                                                      +
   + The default for each variable is no change, for example, UPRINT(1)   +
   + defaults to QQ.  Enter FORTRAN expressions for each of the           +
   + following functions (or default).                                    +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
                                                                      [RETURN]
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default all output modification variables          $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
      Replace QQ for postprocessing?
  UPRINT(1) =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
      Replace A for postprocessing?
  APRINT(1) =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
      Replace B for postprocessing?
  BPRINT(1) =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   The solution is normally saved on a NX+1 by NY+1 rectangular grid of    
   points                                                                  
                 (XA + I*(XB-XA)/NX , YA + J*(YB-YA)/NY)                   
   I=0,...,NX, J=0,...,NY.  Enter values for NX and NY.  Suggested values  
   are NX=NY=25.                                                           
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you want to save the solution at an arbitrary user-specified      +
   + set of points, set NY=0 and NX+1=number of points.  In this case you +
   + can request tabular output of the solution, but you cannot make any  +
   + solution plots.                                                      +
   +                                                                      +
   + If you set NEAR8Z=1 in the main program, the values saved at each    +
   + output point will actually be the solution as evaluated at a nearby  +
   + integration point.  For most problems this obviously will produce    +
   + less accurate output or plots, but for certain (rare) problems, a    +
   + solution component may be much less noisy when plotted only at       +
   + integration points.                                                  +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: NX = 40                                                       $
   $        NY = 40                                                       $
                                                                      [RETURN]
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  NX =
|---- Enter an integer value in the range 1 to +INFINITY          
40                                                                      
  NY =
|---- Enter an integer value in the range 0 to +INFINITY          
40                                                                      
   The solution is saved on an NX+1 by NY+1 rectangular grid covering the  
   rectangle (XA,XB) x (YA,YB).  Enter values for XA,XB,YA,YB.  These      
   variables are usually defaulted.                                        
                                                                           
   The default is a rectangle which just covers the entire region.         
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default XA,XB,YA,YB                                $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  XA =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
  XB =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
  YA =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
  YB =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   To generate tabular or graphical output, choose an output option from   
   the list below.                                                         
                                                                           
   0. No further output is desired                                         
   1. Table of values at output points                                     
         The tabulated output is saved in a file.                          
   2. Surface plot of a scalar variable                                    
   3. Contour plot of a scalar variable                                    
   4. Vector field plot, with arrows indicating magnitude and direction    
   5. One-dimensional cross-sectional plots (versus X, Y or T)             
      or, if applicable:                                                   
   6. Stress field plot (requires 2 or more PDES)                          
         A plot of the principal stresses. Compression is indicated        
         by arrows pointing toward each other, and tension by              
         arrows pointing away from each other.                             
                                                                           
   Enter 0,1,2,3,4,5 or 6 to select an output option.                      
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you set NY=0 and saved the solution at an arbitrary set of        +
   + user-specified output points, you can only request tabular output.   +
   +                                                                      +
                                                                      [RETURN]
   + If you decide later that you want additional types of plots not      +
   + requested during this interactive session, you will have to work     +
   + through a new interactive session, so it is recommended that you     +
   + request all output or plots you think you MIGHT eventually want now, +
   + during this session.                                                 +
   +                                                                      +
   + Regardless of the options you select, a dummy subroutine POSTPR      +
   + will be included in the program created by the interactive driver;   +
   + you can add your own postprocessing code to this subroutine.         +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: 2, the first time you see this message and                    $
   $        0, the second time                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter an integer value in the range 0 to 5                  
2                                                                       
   Enter a value for IVAR, to select the variable to be plotted or         
   printed:                                                                
       IVAR = 1 means QQ  (possibly as modified by UPRINT,..)              
              2       A                                                    
              3       B                                                    
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ We want a surface plot of QQ, so                                     $
   $ enter: IVAR = 1                                                      $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  IVAR =
|---- Enter an integer value in the range 1 to 3                  
1                                                                       
   Enter the view latitude, VLAT, and the view longitude, VLON, desired    
   for this plot, in degrees.  VLAT and VLON must be between 10 and 80     
   degrees; each defaults to 45 degrees.  VLAT and VLON are usually        
   defaulted.                                                              
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default VLAT and VLON                              $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  VLAT =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
  VLON =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   Specify the range (UMIN,UMAX) for the dependent variable axis.  UMIN    
   and UMAX are often defaulted.                                           
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + By default, each plot will be scaled to just fit in the plot area.   +
   + For a common scaling, you may want to set UMIN=ALOW, UMAX=AHIGH.     +
   + ALOW and AHIGH are the minimum and maximum values over all output    +
   + points and over all saved time steps or iterations.                  +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ press [RETURN] to default UMIN and UMAX                              $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  UMIN =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
  UMAX =             (Press [RETURN] to default)
|----Enter constant or FORTRAN expression-----------------------|
                                                                 
   Enter a title, WITHOUT quotation marks.  A maximum of 40 characters     
   are allowed.  The default is no title.                                  
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: First eigenfunction for third example                         $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  TITLE =             (Press [RETURN] to default)
|----Enter title or name---------------|
First eigenfunction for third example   
   To generate tabular or graphical output, choose an output option from   
   the list below.                                                         
                                                                           
   0. No further output is desired                                         
   1. Table of values at output points                                     
         The tabulated output is saved in a file.                          
   2. Surface plot of a scalar variable                                    
   3. Contour plot of a scalar variable                                    
   4. Vector field plot, with arrows indicating magnitude and direction    
   5. One-dimensional cross-sectional plots (versus X, Y or T)             
      or, if applicable:                                                   
   6. Stress field plot (requires 2 or more PDES)                          
         A plot of the principal stresses. Compression is indicated        
         by arrows pointing toward each other, and tension by              
         arrows pointing away from each other.                             
                                                                           
   Enter 0,1,2,3,4,5 or 6 to select an output option.                      
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you set NY=0 and saved the solution at an arbitrary set of        +
   + user-specified output points, you can only request tabular output.   +
   +                                                                      +
                                                                      [RETURN]
   + If you decide later that you want additional types of plots not      +
   + requested during this interactive session, you will have to work     +
   + through a new interactive session, so it is recommended that you     +
   + request all output or plots you think you MIGHT eventually want now, +
   + during this session.                                                 +
   +                                                                      +
   + Regardless of the options you select, a dummy subroutine POSTPR      +
   + will be included in the program created by the interactive driver;   +
   + you can add your own postprocessing code to this subroutine.         +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: 2, the first time you see this message and                    $
   $        0, the second time                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter an integer value in the range 0 to 5                  
0                                                                       
   Do you want to define any FORTRAN function subprograms used in any of   
   the FORTRAN 'expressions' entered earlier, entering them line by line?  
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + If you selected double precision accuracy earlier, be sure to        +
   + declare these functions and their arguments DOUBLE PRECISION.        +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   If you don't want to read the FINE PRINT, enter 'no'.                   
                                                                           
   +++++++++++++++ THE "FINE PRINT" (CAN USUALLY BE IGNORED) ++++++++++++++
   + Do you want to define any FORTRAN function subprograms used in any   +
   + of the FORTRAN 'expressions' entered earlier, by interpolating the   +
   + tabular output saved in a file created on an earlier PDE2D run?      +
   ++++++++++++++++++++++++++ END OF "FINE PRINT" +++++++++++++++++++++++++
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
   $ enter: no                                                            $
   $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ EXAMPLE 3 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
|---- Enter yes or no
no 
   More detailed information about PDE2D can be found in the book          
   "Solving Partial Differential Equation Applications with PDE2D,"        
   Granville Sewell, John Wiley & Sons, 2018.                              
                                                                           
              *******************************************                  
              ***** Input program has been created  *****                  
              *******************************************