LORENE
des_coupe_x.C
1/*
2 * Copyright (c) 1999-2001 Eric Gourgoulhon
3 *
4 * This file is part of LORENE.
5 *
6 * LORENE is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * LORENE is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with LORENE; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22
23
24
25/*
26 * $Id: des_coupe_x.C,v 1.7 2016/12/05 16:18:06 j_novak Exp $
27 * $Log: des_coupe_x.C,v $
28 * Revision 1.7 2016/12/05 16:18:06 j_novak
29 * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
30 *
31 * Revision 1.6 2014/10/13 08:53:22 j_novak
32 * Lorene classes and functions now belong to the namespace Lorene.
33 *
34 * Revision 1.5 2014/10/06 15:16:04 j_novak
35 * Modified #include directives to use c++ syntax.
36 *
37 * Revision 1.4 2008/08/19 06:42:00 j_novak
38 * Minor modifications to avoid warnings with gcc 4.3. Most of them concern
39 * cast-type operations, and constant strings that must be defined as const char*
40 *
41 * Revision 1.3 2004/03/25 10:29:24 j_novak
42 * All LORENE's units are now defined in the namespace Unites (in file unites.h).
43 *
44 * Revision 1.2 2002/09/06 15:18:52 e_gourgoulhon
45 * Changement du nom de la variable "hz" en "hza"
46 * pour assurer la compatibilite avec le compilateur xlC_r
47 * sur IBM Regatta (le preprocesseur de ce compilateur remplace
48 * "hz" par "100").
49 *
50 * Revision 1.1.1.1 2001/11/20 15:19:29 e_gourgoulhon
51 * LORENE
52 *
53 * Revision 1.8 2000/02/12 11:18:27 eric
54 * Ajout de la version avec determination automatique des bornes de la fenetrraphique
55 *
56 * Revision 1.7 2000/02/11 18:43:53 eric
57 * Ajout de l'argument draw_bound.
58 *
59 * Revision 1.6 2000/02/11 16:52:42 eric
60 * Utilisation des coordonnees cartesiennes abolues (X,Y,Z) et non plus
61 * des coordonnees relatives (x,y,z).
62 *
63 * Revision 1.5 1999/12/28 09:02:24 eric
64 * *** empty log message ***
65 *
66 * Revision 1.4 1999/12/27 12:18:18 eric
67 * Ajout du dessin des frontieres de domains.
68 *
69 * Revision 1.3 1999/12/24 13:00:20 eric
70 * On appelle desormais la routine des_surface_x pour le dessin de la
71 * surface.
72 *
73 * Revision 1.2 1999/12/23 16:15:52 eric
74 * Ajout du dessin de la surface (argument defsurf).
75 *
76 * Revision 1.1 1999/12/09 16:38:03 eric
77 * Initial revision
78 *
79 *
80 * $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/des_coupe_x.C,v 1.7 2016/12/05 16:18:06 j_novak Exp $
81 *
82 */
83
84// Header C
85#include <cmath>
86
87// Header Lorene
88#include "cmp.h"
89#include "graphique.h"
90#include "param.h"
91#include "utilitaires.h"
92#include "unites.h"
93
94namespace Lorene {
95//******************************************************************************
96
97void des_coupe_x(const Cmp& uu, double x0, int nzdes, const char* title,
98 const Cmp* defsurf, double zoom, bool draw_bound,
99 int ncour, int ny, int nz) {
100
101 const Map& mp = *(uu.get_mp()) ;
102
103 double a1 = mp.val_r(nzdes-1, 1., M_PI/2., 0.) ;
104 double a2 = mp.val_r(nzdes-1, 1., M_PI/2., M_PI/2.) ;
105 double a3 = mp.val_r(nzdes-1, 1., M_PI/2., M_PI) ;
106 double ray = mp.val_r(nzdes-1, 1., 0., 0.) ;
107
108 ray = ( a1 > ray ) ? a1 : ray ;
109 ray = ( a2 > ray ) ? a2 : ray ;
110 ray = ( a3 > ray ) ? a3 : ray ;
111
112 ray *= zoom ;
113
114 double y_min = mp.get_ori_y() - ray ;
115 double y_max = mp.get_ori_y() + ray ;
116 double z_min = mp.get_ori_z() - ray ;
117 double z_max = mp.get_ori_z() + ray ;
118
119 des_coupe_x(uu, x0, y_min, y_max, z_min, z_max, title, defsurf, draw_bound,
120 ncour, ny, nz) ;
121
122}
123
124
125
126//******************************************************************************
127
128void des_coupe_x(const Cmp& uu, double x0, double y_min, double y_max,
129 double z_min, double z_max, const char* title, const Cmp* defsurf,
130 bool draw_bound, int ncour, int ny, int nz) {
131
132using namespace Unites ;
133
134 const Map& mp = *(uu.get_mp()) ;
135
136 // Plot of isocontours
137 // -------------------
138
139 float* uutab = new float[ny*nz] ;
140
141 double hy = (y_max - y_min) / double(ny-1) ;
142 double hza = (z_max - z_min) / double(nz-1) ;
143
144 for (int j=0; j<nz; j++) {
145
146 double z = z_min + hza * j ;
147
148 for (int i=0; i<ny; i++) {
149
150 double y = y_min + hy * i ;
151
152 // Computation of (r,theta,phi) :
153 double r, theta, phi ;
154 mp.convert_absolute(x0, y, z, r, theta, phi) ;
155
156 uutab[ny*j+i] = float(uu.val_point(r, theta, phi)) ;
157 }
158 }
159
160 float ymin1 = float(y_min / km) ;
161 float ymax1 = float(y_max / km) ;
162 float zmin1 = float(z_min / km) ;
163 float zmax1 = float(z_max / km) ;
164
165 const char* nomy = "y [km]" ;
166 const char* nomz = "z [km]" ;
167
168 if (title == 0x0) {
169 title = "" ;
170 }
171
172 const char* device = 0x0 ;
173 int newgraph = ( (defsurf != 0x0) || draw_bound ) ? 1 : 3 ;
174
175 des_equipot(uutab, ny, nz, ymin1, ymax1, zmin1, zmax1, ncour, nomy, nomz,
176 title, device, newgraph) ;
177
178 delete [] uutab ;
179
180 // Plot of the surface
181 // -------------------
182
183 if (defsurf != 0x0) {
184
185 assert(defsurf->get_mp() == uu.get_mp()) ;
186
187 newgraph = draw_bound ? 0 : 2 ;
188
189 des_surface_x(*defsurf, x0, device, newgraph) ;
190
191 } // End of the surface drawing
192
193
194 // Plot of the domains outer boundaries
195 // ------------------------------------
196
197 if (draw_bound) {
198
199 int ndom = mp.get_mg()->get_nzone() ; // total number of domains
200
201 for (int l=0; l<ndom-1; l++) { // loop on the domains (except the
202 // last one)
203
204 newgraph = (l == ndom-2) ? 2 : 0 ;
205
206 des_domaine_x(mp, l, x0, device, newgraph) ;
207 }
208 }
209
210
211}
212}
Component of a tensorial field *** DEPRECATED : use class Scalar instead ***.
Definition cmp.h:446
Lorene prototypes.
Definition app_hor.h:67
Coord z
z coordinate centered on the grid
Definition map.h:740
Coord y
y coordinate centered on the grid
Definition map.h:739
Map(const Mg3d &)
Constructor from a multi-domain 3D grid.
Definition map.C:142
Coord phi
coordinate centered on the grid
Definition map.h:732
Coord r
r coordinate centered on the grid
Definition map.h:730