1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* Plot of time evolution
*
* (see file graphique.h for documentation).
*
*/
/*
* Copyright (c) 2004 Eric Gourgoulhon.
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
char des_evolution_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/des_evolution.C,v 1.5 2014/10/13 08:53:22 j_novak Exp $" ;
/*
* $Id: des_evolution.C,v 1.5 2014/10/13 08:53:22 j_novak Exp $
* $Log: des_evolution.C,v $
* Revision 1.5 2014/10/13 08:53:22 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.4 2008/08/19 06:42:00 j_novak
* Minor modifications to avoid warnings with gcc 4.3. Most of them concern
* cast-type operations, and constant strings that must be defined as const char*
*
* Revision 1.3 2004/05/20 20:29:31 e_gourgoulhon
* Added argument 'device'.
*
* Revision 1.2 2004/05/11 20:09:47 e_gourgoulhon
* Corrected bug when j_min != 0.
* Added version of des_evol for plot on the whole Evolution's time range.
*
* Revision 1.1 2004/02/17 22:16:08 e_gourgoulhon
* First version
*
*
* $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/des_evolution.C,v 1.5 2014/10/13 08:53:22 j_novak Exp $
*
*/
// Lorene headers
#include "graphique.h"
#include "evolution.h"
// Plot on the whole time range
//------------------------------
namespace Lorene {
void des_evol(const Evolution<double>& uu, const char* nomy,
const char* title, int ngraph, const char* device,
bool closeit, bool show_time, const char* nomx) {
int jmin = uu.j_min() ;
int jmax = uu.j_max() ;
des_evol(uu, jmin, jmax, nomy, title, ngraph, device, closeit,
show_time, nomx) ;
}
// Plot within a specified time range
//------------------------------------
void des_evol(const Evolution<double>& uu, int j_min, int j_max,
const char* nomy, const char* title, int ngraph, const char* device,
bool closeit, bool show_time, const char* nomx) {
// Special case of no graphical output:
if (device != 0x0) {
if ((device[0] == '/') && (device[1] == 'n')) return ;
}
int npt = j_max - j_min + 1 ;
float* uutab = new float[npt] ; // Values of uu at the npt points
float* xtab = new float[npt] ; // Values of t at the npt points
for (int j=j_min; j<=j_max; j++) {
uutab[j-j_min] = float(uu[j]) ;
}
if (show_time) {
for (int j=j_min; j<=j_max; j++) {
xtab[j-j_min] = float(uu.get_time(j)) ;
}
}
else{
for (int j=j_min; j<=j_max; j++) {
xtab[j-j_min] = float(j) ;
}
}
if (nomx == 0x0) nomx = (show_time) ? "t" : "j" ;
if (nomy == 0x0) nomy = "" ;
if (title == 0x0) title = "" ;
des_profile_mult(uutab, 1, npt, xtab, nomx, nomy, title, 0x0, ngraph,
closeit, device) ;
delete [] uutab ;
}
}
|