121 void write_formatted(
const double&, ostream& ) ;
122 void write_formatted(
const Tbl&, ostream& ) ;
130 template<
typename TyT>
132 double initial_time,
int size_i)
136 step =
new int[size] ;
137 step[0] = initial_step ;
138 for (
int j=1; j<size; j++) {
139 step[j] = UNDEF_STEP ;
142 the_time =
new double[size] ;
143 the_time[0] = initial_time ;
144 for (
int j=1; j<size; j++) {
145 the_time[j] = -1e20 ;
148 val =
new TyT*[size] ;
149 val[0] =
new TyT(initial_value) ;
150 for (
int j=1; j<size; j++) {
157 template<
typename TyT>
162 step =
new int[size] ;
163 for (
int j=0; j<size; j++) {
164 step[j] = UNDEF_STEP ;
167 the_time =
new double[size] ;
168 for (
int j=0; j<size; j++) {
169 the_time[j] = -1e20 ;
172 val =
new TyT*[size] ;
173 for (
int j=0; j<size; j++) {
181 template<
typename TyT>
184 pos_jtop(evo.pos_jtop) {
186 step =
new int[size] ;
187 for (
int j=0; j<size; j++) {
188 step[j] = evo.
step[j] ;
191 the_time =
new double[size] ;
192 for (
int j=0; j<size; j++) {
196 val =
new TyT*[size] ;
197 for (
int j=0; j<size; j++) {
198 if (evo.
val[j] != 0x0) {
199 val[j] =
new TyT( *(evo.
val[j]) ) ;
217 template<
typename TyT>
223 for (
int j=0; j<size; j++) {
224 if (val[j] != 0x0)
delete val[j] ;
238 template<
typename TyT>
241 cerr <<
"void Evolution<TyT>::operator= : not implemented yet ! \n" ;
247 template<
typename TyT>
250 if ( !(is_known(j)) ) return ;
253 int pos = position(j) ;
255 assert( val[pos] != 0x0) ;
259 step[pos] = UNDEF_STEP ;
260 the_time[pos] = -1e20 ;
262 if (pos == pos_jtop) {
264 while ( (pos_jtop>=0) && (val[pos_jtop] == 0x0) ) pos_jtop-- ;
276 template<
typename TyT>
279 assert(pos_jtop >= 0) ;
280 int jmax = step[pos_jtop] ;
282 if (j == jmax)
return pos_jtop ;
286 if ( (j>=step[0]) && (j<jmax) ) {
288 for (
int i=pos_jtop-1; i>=0; i--) {
297 cerr <<
"Evolution<TyT>::position: time step j = " <<
298 j <<
" not found !" << endl ;
305 template<
typename TyT>
308 assert( (j>=0) && (j<=pos_jtop) ) ;
309 assert( step[j] != UNDEF_STEP ) ;
313 while ( (n_pos == -1) && ( j < pos_jtop ) ) {
316 if (step[j] != UNDEF_STEP) n_pos = j ;
321 template<
typename TyT>
324 assert( (j>=0) && (j<=pos_jtop) ) ;
325 assert( step[j] != UNDEF_STEP ) ;
329 while ( (n_pos == -1) && ( j > 0 ) ) {
332 if (step[j] != UNDEF_STEP) n_pos = j ;
338 template<
typename TyT>
341 if (pos_jtop == -1)
return false ;
343 assert(pos_jtop >= 0) ;
345 int jmax = step[pos_jtop] ;
348 return ( val[pos_jtop] != 0x0 ) ;
351 if ( (j>=step[0]) && (j<jmax) ) {
353 for (
int i=pos_jtop-1; i>=0; i--) {
355 if (step[i] == j)
return ( val[i] != 0x0 ) ;
363 template<
typename TyT>
366 TyT* pval = val[position(j)] ;
367 assert(pval != 0x0) ;
373 template<
typename TyT>
376 int imin = position( j_min() ) ;
378 if ( ( t < the_time[ imin ] ) || ( t > the_time[pos_jtop] ) ) {
379 cerr <<
"Evolution<TyT>::operator()(double t, int order) : \n" 380 <<
"Requested time outside stored range!" << endl ;
383 assert ( order <= 2 ) ;
384 assert ( pos_jtop > order ) ;
388 while ((the_time[j0] < t) && ( j0 < pos_jtop )) {
389 j0 = next_position(j0) ;
404 int j1 = ( (j0 > imin) ? previous_position(j0) : next_position(j0) ) ;
407 double x0 = the_time[j1] - t ;
408 double x1 = the_time[j0] - t ;
409 double dx = the_time[j0] - the_time[j1] ;
411 double a0 = x1 / dx ;
412 double a1 = x0 / dx ;
414 return (a0*(*val[j0]) - a1*(*val[j1])) ;
421 int j1 = ( (j0 == imin) ? next_position(j0) : previous_position(j0) ) ;
426 j2 = next_position(j1) ;
429 j2 = next_position(j0) ;
431 j2 = previous_position(j1) ;
435 double x0 = t - the_time[j0] ;
436 double x1 = t - the_time[j1] ;
437 double dx = the_time[j0] - the_time[j1] ;
439 double x2 = t - the_time[j2] ;
441 double dx0 = the_time[j1] - the_time[j2] ;
442 double dx1 = the_time[j0] - the_time[j2] ;
445 double a0 = ( x2*x1 ) / ( dx2*dx1 ) ;
446 double a1 = ( x0*x2 ) / ( dx0*dx2 ) ;
447 double a2 = ( x0*x1 ) / ( dx0*dx1 ) ;
449 return ( a0*(*val[j0]) - a1*(*val[j1]) + a2*(*val[j2]) ) ;
455 cerr <<
" Evolution<TyT>::operator()(double t, int order) : \n" << endl ;
456 cerr <<
" The case order = " << order <<
" is not implemented!" << endl ;
466 template<
typename TyT>
469 if ( t < the_time[pos_jtop] ) {
470 cerr <<
"Evolution<TyT>::extrapolate(double t, int order) : \n" 471 <<
"Requested time is inside stored range..." << endl ;
474 assert ( pos_jtop >= order ) ;
479 return *val[pos_jtop];
484 int j0 = UNDEF_STEP ;
485 for (
int i=pos_jtop-1; i>=0; i--) {
486 if (step[i] != UNDEF_STEP) {
491 assert(j0 != UNDEF_STEP) ;
494 double fac = (t - the_time[j0]) / (the_time[j1] - the_time[j0]) ;
495 return fac*(*val[j1]) + (1. - fac)*(*val[j0]) ;
501 int j1 = UNDEF_STEP ;
502 for (
int i=j2-1; i>=0; i--) {
503 if (step[i] != UNDEF_STEP) {
508 assert(j1 != UNDEF_STEP) ;
509 int j0 = UNDEF_STEP ;
510 for (
int i=j1-1; i>=0; i--) {
511 if (step[i] != UNDEF_STEP) {
516 assert(j0 != UNDEF_STEP) ;
518 double t0 = the_time[j0] ;
519 double t1 = the_time[j1] ;
520 double t2 = the_time[j2] ;
521 double t01 = t0 - t1 ;
522 double t02 = t0 - t2 ;
523 double t12 = t1 - t2 ;
525 return ((t - t1)*(t - t2)/(t01*t02))*(*val[j0])
526 - ((t - t0)*(t - t2)/(t01*t12))*(*val[j1])
527 + ((t - t0)*(t - t1)/(t02*t12))*(*val[j2]) ;
532 cerr <<
" Evolution<TyT>::extrapolate(double t, int order) : \n" << endl ;
533 cerr <<
" The case order = " << order <<
" is not implemented!" << endl ;
539 return *val[pos_jtop] ;
544 template<
typename TyT>
547 int resu = UNDEF_STEP ;
548 for (
int i=0; i<=pos_jtop; i++) {
549 if (step[i] != UNDEF_STEP) {
555 if (resu == UNDEF_STEP) {
556 cerr <<
"Evolution<TyT>::j_min() : no valid time step found !" << endl ;
563 template<
typename TyT>
566 if (pos_jtop == -1) {
567 cerr <<
"Evolution<TyT>::j_max() : no valid time step found !" << endl ;
571 assert(pos_jtop >=0) ;
572 int jmax = step[pos_jtop] ;
573 assert(jmax != UNDEF_STEP) ;
585 template<
typename TyT>
589 TyT resu (
operator[](j) ) ;
598 int pos = position(j) ;
600 assert ( step[pos-1] != UNDEF_STEP ) ;
606 double dt = the_time[pos] - the_time[pos-1] ;
608 return ( (*val[pos]) - (*val[pos-1]) ) / dt ;
615 assert ( step[pos-2] != UNDEF_STEP ) ;
616 double dt = the_time[pos] - the_time[pos-1] ;
618 double dt2 = the_time[pos-1] - the_time[pos-2] ;
619 if (fabs(dt2 -dt) > 1.e-13) {
621 "Evolution<TyT>::time_derive: the current version is" 622 <<
" valid only for \n" 623 <<
" a constant time step !" << endl ;
627 return ( 1.5* (*val[pos]) - 2.* (*val[pos-1]) + 0.5* (*val[pos-2]) ) / dt ;
634 assert ( step[pos-2] != UNDEF_STEP ) ;
635 assert ( step[pos-3] != UNDEF_STEP ) ;
636 double dt = the_time[pos] - the_time[pos-1] ;
638 double dt2 = the_time[pos-1] - the_time[pos-2] ;
639 double dt3 = the_time[pos-2] - the_time[pos-3] ;
640 if ((fabs(dt2 -dt) > 1.e-13)||(fabs(dt3 -dt2) > 1.e-13)) {
642 "Evolution<TyT>::time_derive: the current version is valid only for \n" 643 <<
" a constant time step !" << endl ;
647 return ( 11.*(*val[pos]) - 18.*(*val[pos-1]) + 9.*(*val[pos-2])
648 - 2.*(*val[pos-3])) / (6.*dt) ;
652 cerr <<
"Evolution<TyT>::time_derive: the case n = " << n
653 <<
" is not implemented !" << endl ;
660 return operator[](j) ;
670 template<
typename TyT>
673 ofstream fich(filename) ;
675 time_t temps = time(0x0) ;
677 fich <<
"# " << filename <<
" " << ctime(&temps) ;
678 fich <<
"# " << size <<
" size" <<
'\n' ;
679 fich <<
"# " << pos_jtop <<
" pos_jtop" <<
'\n' ;
680 fich <<
"# t value... \n" ;
683 fich.setf(ios::scientific) ;
685 for (
int i=0; i<=pos_jtop; i++) {
686 if (step[i] != UNDEF_STEP) {
687 fich << the_time[i] ; fich.width(23) ;
688 assert(val[i] != 0x0) ;
689 write_formatted(*(val[i]), fich) ;
TyT ** val
Array of pointers onto the values (size = size).
Evolution(const TyT &initial_value, int initial_j, double initial_time, int initial_size)
Constructor from some initial value.
int * step
Array of time step indices (size = size).
double * the_time
Array of values of t at the various time steps (size = size).