home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / liboctave / FEGrid.cc < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  139 lines

  1. // FEGrid.cc                                              -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #ifdef HAVE_CONFIG_H
  25. #include "config.h"
  26. #endif
  27.  
  28. #include <iostream.h>
  29.  
  30. #include "FEGrid.h"
  31. #include "lo-error.h"
  32.  
  33. // error handling
  34.  
  35. void
  36. FEGrid::error (const char* msg) const
  37. {
  38.   (*current_liboctave_error_handler) ("fatal FEGrid error: %s", msg);
  39. }
  40.  
  41. void
  42. FEGrid::nel_error (void) const
  43. {
  44.   error ("number of elements less than 1");
  45. }
  46.  
  47. // Constructors
  48.  
  49. FEGrid::FEGrid (int nel, double width)
  50. {
  51.   if (nel < 1)
  52.     {
  53.       nel_error ();
  54.       return;
  55.     }
  56.  
  57.   elem.resize (nel+1);
  58.  
  59.   for (int i = 0; i <= nel; i++)
  60.     elem.elem (i) = i * width;
  61. }
  62.  
  63. FEGrid::FEGrid (int nel, double left, double right)
  64. {
  65.   if (nel < 1)
  66.     {
  67.       nel_error ();
  68.       return;
  69.     }
  70.  
  71.   elem.resize (nel+1);
  72.  
  73.   double width = (right - left) / (double) nel;
  74.  
  75.   for (int i = 0; i <= nel; i++)
  76.     elem.elem (i) = i * width + left;
  77.  
  78.   check_grid ();
  79. }
  80.  
  81. int
  82. FEGrid::element (double x) const
  83. {
  84.   if (! in_bounds (x))
  85.     {
  86.       error ("value not within grid boundaries");
  87.       return -1;
  88.     }
  89.  
  90.   int nel = elem.capacity () - 1;
  91.   for (int i = 1; i <= nel; i++)
  92.     {
  93.       if (x >= elem.elem (i-1) && x <= elem.elem (i))
  94.     return i;
  95.     }
  96.   return -1;
  97.        
  98. }
  99.  
  100. void
  101. FEGrid::check_grid (void) const
  102. {
  103.   int nel = elem.capacity () - 1;
  104.   if (nel < 1)
  105.     {
  106.       nel_error ();
  107.       return;
  108.     }
  109.  
  110.   for (int i = 1; i <= nel; i++)
  111.     {
  112.       if (elem.elem (i-1) > elem.elem (i))
  113.     {
  114.       error ("element boundaries not in ascending order");
  115.       return;
  116.     }
  117.  
  118.       if (elem.elem (i-1) == elem.elem (i))
  119.     {
  120.       error ("zero width element");
  121.       return;
  122.     }
  123.     }
  124. }
  125.  
  126. ostream&
  127. operator << (ostream& s, const FEGrid& g)
  128. {
  129.   s << g.element_boundaries ();
  130.   return s;
  131. }
  132.  
  133. /*
  134. ;;; Local Variables: ***
  135. ;;; mode: C++ ***
  136. ;;; page-delimiter: "^/\\*" ***
  137. ;;; End: ***
  138. */
  139.