LORENE
evolution.h
1 /*
2  * Definition of Lorene template classes Evolution, Evolution_full
3  * and Evolution_std
4  *
5  */
6 
7 /*
8  * Copyright (c) 2004 Eric Gourgoulhon & Jerome Novak
9  *
10  * This file is part of LORENE.
11  *
12  * LORENE is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2
14  * as published by the Free Software Foundation.
15  *
16  * LORENE is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with LORENE; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24  *
25  */
26 
27 
28 #ifndef __EVOLUTION_H_
29 #define __EVOLUTION_H_
30 
31 /*
32  * $Id: evolution.h,v 1.16 2025/03/18 14:06:02 j_novak Exp $
33  * $Log: evolution.h,v $
34  * Revision 1.16 2025/03/18 14:06:02 j_novak
35  * Added extrapolation method (constant,linear or parabolic) in the Evolution template class.
36  *
37  * Revision 1.15 2014/10/13 08:52:34 j_novak
38  * Lorene classes and functions now belong to the namespace Lorene.
39  *
40  * Revision 1.14 2014/03/27 16:59:41 j_novak
41  * Added methods next_position(int) and previous_position(int). Changed (corrected + simplified) the interpolation method.
42  *
43  * Revision 1.13 2013/07/19 15:50:24 j_novak
44  * Implementation of the interpolation function for Evolution, with order=0, 1 or 2.
45  *
46  * Revision 1.12 2004/11/26 09:28:50 p_grandclement
47  * using in Derived templates are now public
48  *
49  * Revision 1.11 2004/11/25 07:53:53 e_gourgoulhon
50  * Added directives
51  * using Evolution<TyT>::...
52  * to comply with g++ 3.4.
53  *
54  * Revision 1.10 2004/05/11 20:11:49 e_gourgoulhon
55  * Class Evolution:
56  * -- suppressed method get_jtop()
57  * -- added methods j_min(), j_max() and save().
58  *
59  * Revision 1.9 2004/03/26 13:31:08 j_novak
60  * Definition of the macro UNDEF_STEP for non-defined time-steps.
61  * Changes in the way the time derivative is calculated.
62  *
63  * Revision 1.8 2004/03/26 08:22:12 e_gourgoulhon
64  * *** Full reorganization of class Evolution ***
65  * Introduction of the notion of absoluteuniversal time steps,
66  * stored in the new array 'step'.
67  * The new function position(int j) makes a correspondence
68  * between a universal time step j and the position in the
69  * arrays step, the_time and val.
70  * Only method update is now virtual.
71  * Methods operator[], position, is_known, downdate belong to
72  * the base class.
73  *
74  * Revision 1.7 2004/03/24 14:55:46 e_gourgoulhon
75  * Added method last_value().
76  *
77  * Revision 1.6 2004/03/23 14:50:40 e_gourgoulhon
78  * Added methods is_updated, downdate, get_jlast, get_size,
79  * as well as constructors without any initial value.
80  * Formatted documentation for Doxygen.
81  *
82  * Revision 1.5 2004/03/06 21:13:13 e_gourgoulhon
83  * Added time derivation (method time_derive).
84  *
85  * Revision 1.4 2004/02/16 17:37:17 j_novak
86  * Arguments named for doc++.
87  *
88  * Revision 1.3 2004/02/16 10:36:03 e_gourgoulhon
89  * Replaced " = 0x0" by " = 0" in the declaration of pure virtual functions.
90  *
91  * Revision 1.2 2004/02/15 21:55:32 e_gourgoulhon
92  * Introduced derived classes Evolution_full and Evolution_std.
93  * Evolution is now an abstract base class.
94  *
95  * Revision 1.1 2004/02/13 15:53:20 e_gourgoulhon
96  * New (template) class for time evolution.
97  *
98  *
99  *
100  *
101  * $Header: /cvsroot/Lorene/C++/Include/evolution.h,v 1.16 2025/03/18 14:06:02 j_novak Exp $
102  *
103  */
104 
105 #define UNDEF_STEP -100000
106 
107  //---------------------------//
108  // Class Evolution //
109  //---------------------------//
110 
111 
112 namespace Lorene {
123 template<typename TyT> class Evolution {
124 
125 
126  // Data:
127  // -----
128 
129  protected:
131  int size ;
132 
134  int* step ;
135 
137  double* the_time ;
138 
140  TyT** val ;
141 
145  int pos_jtop ;
146 
147 
148  // Constructors - Destructor
149  // -------------------------
150  protected:
154  Evolution(const TyT& initial_value, int initial_j,
155  double initial_time, int initial_size) ;
156 
159  Evolution(int initial_size) ;
160 
161  Evolution(const Evolution<TyT>& t_in) ;
162 
163  public:
164 
165  virtual ~Evolution() ;
166 
167  // Mutators
168  // --------
169  public:
172  virtual void update(const TyT& new_value, int j,
173  double time_j) = 0 ;
174 
177  void downdate(int j) ;
178 
180  virtual void operator=(const Evolution<TyT>& t_in) ;
181 
182 
183  // Accessors
184  // ---------
185  protected:
189  int position(int j) const ;
190 
192  int next_position(int i) const ;
193 
195  int previous_position(int i) const ;
196 
197  public:
199  const TyT& operator[](int j) const ;
200 
202  double get_time(int j) const {return the_time[position(j)];} ;
203 
205  TyT operator()(double t, int order=2) const ;
206 
208  TyT extrapolate(double t, int order = 1) const ;
209 
211  int get_size() const {return size; } ;
212 
214  int j_min() const ;
215 
217  int j_max() const ;
218 
224  bool is_known(int j) const ;
225 
226 
227 
228  // Computational methods
229  // ---------------------
242  TyT time_derive(int j, int n = 2) const ;
243 
244  // Outputs
245  // -------
246 
254  void save(const char* filename) const ;
255 
256 };
257 
258 
259  //---------------------------//
260  // Class Evolution_full //
261  //---------------------------//
262 
263 
276 template<typename TyT> class Evolution_full : public Evolution<TyT> {
277 
278  public:
279  using Evolution<TyT>::size ;
280  using Evolution<TyT>::step ;
281  using Evolution<TyT>::the_time ;
282  using Evolution<TyT>::val ;
283  using Evolution<TyT>::pos_jtop ;
284  using Evolution<TyT>::downdate ;
285  using Evolution<TyT>::position ;
286  using Evolution<TyT>::get_time ;
287  using Evolution<TyT>::get_size ;
288  using Evolution<TyT>::j_min ;
289  using Evolution<TyT>::j_max ;
290  using Evolution<TyT>::is_known ;
291 
292  // Data:
293  // -----
294 
295  private:
300  int fact_resize ;
301 
302  // Constructors - Destructor
303  // -------------------------
304  public:
315  Evolution_full(const TyT& initial_value, int initial_j = 0,
316  double initial_time = 0., int fact_resize_i = 2) ;
317 
325  Evolution_full(int fact_resize_i = 2) ;
326 
327 
328  Evolution_full(const Evolution_full<TyT>& t_in) ;
329 
330  virtual ~Evolution_full() ;
331 
332  // Mutators
333  // --------
334  public:
340  virtual void update(const TyT& new_value, int j,
341  double time_j) ;
342 
344  virtual void operator=(const Evolution_full<TyT>& t_in) ;
345 
347  virtual void operator=(const Evolution<TyT>& t_in) ;
348 
349 
350  // Accessors
351  // ---------
352 
353  // Outputs
354  // -------
355 
356 
357 
358 };
359 
360 
361  //---------------------------//
362  // Class Evolution_std //
363  //---------------------------//
364 
365 
377 template<typename TyT> class Evolution_std : public Evolution<TyT> {
378 
379  public:
380  using Evolution<TyT>::size ;
381  using Evolution<TyT>::step ;
382  using Evolution<TyT>::the_time ;
383  using Evolution<TyT>::val ;
384  using Evolution<TyT>::pos_jtop ;
385  using Evolution<TyT>::downdate ;
386  using Evolution<TyT>::position ;
387  using Evolution<TyT>::get_time ;
388  using Evolution<TyT>::get_size ;
389  using Evolution<TyT>::j_min ;
390  using Evolution<TyT>::j_max ;
391  using Evolution<TyT>::is_known ;
392 
393  // Constructors - Destructor
394  // -------------------------
395  public:
404  Evolution_std(const TyT& initial_value, int nstored,
405  int initial_j = 0, double initial_time = 0.) ;
406 
412  Evolution_std(int nstored) ;
413 
414 
415  Evolution_std(const Evolution_std<TyT>& t_in) ;
416 
417  virtual ~Evolution_std() ;
418 
419  // Mutators
420  // --------
426  virtual void update(const TyT& new_value, int j, double time_j) ;
427 
429  virtual void operator=(const Evolution_std<TyT>& t_in) ;
430 
432  virtual void operator=(const Evolution<TyT>& t_in) ;
433 
434  // Accessors
435  // ---------
436 
437  // Outputs
438  // -------
439 
440 
441 
442 };
443 
444 }
445 
446 #include "Template/evolution.C"
447 #include "Template/evolution_full.C"
448 #include "Template/evolution_std.C"
449 
450 #endif
451 
int position(int j) const
Gives the position in the arrays step, the_time and val corresponding to the time step j...
Definition: evolution.C:277
Evolution_std(const TyT &initial_value, int nstored, int initial_j=0, double initial_time=0.)
Constructor from initial value.
Definition: evolution_std.C:96
int j_min() const
Returns the smaller time step j stored in *this.
Definition: evolution.C:545
TyT operator()(double t, int order=2) const
Returns the value at time t, with a scheme of order order.
Definition: evolution.C:374
Lorene prototypes.
Definition: app_hor.h:67
virtual void update(const TyT &new_value, int j, double time_j)
Sets a new value at a given time step.
virtual ~Evolution_full()
Destructor.
double get_time(int j) const
Returns the time t at time step j.
Definition: evolution.h:202
virtual ~Evolution()
Destructor.
Definition: evolution.C:218
TyT ** val
Array of pointers onto the values (size = size).
Definition: evolution.h:140
virtual void update(const TyT &new_value, int j, double time_j)
Sets a new value at a given time step.
int size
Maximum number of stored time steps.
Definition: evolution.h:131
int fact_resize
Factor by which the size size of the arrays val and the_time are to be multiplied when their limits h...
Definition: evolution.h:300
Evolution_full(const TyT &initial_value, int initial_j=0, double initial_time=0., int fact_resize_i=2)
Constructor from initial value.
TyT extrapolate(double t, int order=1) const
Returns the extrapolated value, with a scheme of order order.
Definition: evolution.C:467
int pos_jtop
Position in the arrays step, the_time and val of the most evolved time step.
Definition: evolution.h:145
TyT time_derive(int j, int n=2) const
Computes the time derivative at time step j by means of a n-th order scheme, from the values at steps...
Definition: evolution.C:586
virtual void operator=(const Evolution_full< TyT > &t_in)
Assignement to another Evolution_full.
bool is_known(int j) const
Checks whether the value a given time step has been set.
Definition: evolution.C:339
Evolution(const TyT &initial_value, int initial_j, double initial_time, int initial_size)
Constructor from some initial value.
Definition: evolution.C:131
virtual ~Evolution_std()
Destructor.
const TyT & operator[](int j) const
Returns the value at time step j.
Definition: evolution.C:364
Time evolution with partial storage (*** under development ***).
Definition: evolution.h:377
int * step
Array of time step indices (size = size).
Definition: evolution.h:134
void downdate(int j)
Suppresses a stored value.
Definition: evolution.C:248
double * the_time
Array of values of t at the various time steps (size = size).
Definition: evolution.h:137
int j_max() const
Returns the larger time step j stored in *this.
Definition: evolution.C:564
virtual void operator=(const Evolution_std< TyT > &t_in)
Assignement to another Evolution_std.
Time evolution.
Definition: evolution.h:123
int get_size() const
Returns the member size.
Definition: evolution.h:211
virtual void update(const TyT &new_value, int j, double time_j)=0
Sets a new value at a given time step.
int next_position(int i) const
Returns the next valid position (returns -1 if none is found)
Definition: evolution.C:306
void save(const char *filename) const
Saves *this in a formatted file.
Definition: evolution.C:671
int previous_position(int i) const
Returns the previous valid position (returns -1 if none is found)
Definition: evolution.C:322
virtual void operator=(const Evolution< TyT > &t_in)
Assignement.
Definition: evolution.C:239
Time evolution with full storage (*** under development ***).
Definition: evolution.h:276