/usr/include/Gyoto/GyotoPatternDisk.h is in libgyoto1-dev 0.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | /**
* \file GyotoPatternDisk.h
* \brief A geometrically thin, optically thick disk
*
* The target of ray-traced Gyoto::Photon
*/
/*
Copyright 2011 Frederic Vincent, Thibaut Paumard
This file is part of Gyoto.
Gyoto is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Gyoto 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 Gyoto. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GyotoPatternDisk_H_
#define __GyotoPatternDisk_H_
#include <iostream>
#include <fstream>
#include <iomanip>
namespace Gyoto{
namespace Astrobj { class PatternDisk; }
}
//#include <GyotoMetric.h>
#include <GyotoThinDisk.h>
/**
* \class Gyoto::Astrobj::PatternDisk
* \brief Geometrically thin disk read from FITS file
*
* This class describes a disk contained in the z=0 (equatorial)
* plane, extending from r=r_ISCO to r=infinity. The flux emitted
* at radius r and longitude phi at frequency nu is given in a FITS
* file.
*
*/
class Gyoto::Astrobj::PatternDisk : public Astrobj::ThinDisk {
friend class Gyoto::SmartPointer<Gyoto::Astrobj::PatternDisk>;
private:
std::string filename_; ///< Optional FITS file name containing the arrays
/**
* An array of dimensionality double[nr_][nphi_][nnu_]. In FITS
* format, the first dimension is nu, the second phi, and the third
* r.
*/
double * emission_; ///< I<SUB>ν</SUB>(ν, r, φ)
double * opacity_; ///< Same dimenstions as emission, or NULL
/**
* An array of dimensionality double[nr_][nphi_][2]. In FITS format,
* the second dimension is phi, and the third r. The first plane in
* the first FITS dimention is dφ/dt, the second dr/dt.
*/
double * velocity_; ///< velocity(r, φ)
/**
* In case of adaptive grid.
*/
double * radius_; ///< Radius vector
/**
* XML element: <Omega>.
* FITS keyword: HIERARCH GYOTO PatternDisk Omega
*/
double Omega_; ///< Pattern angular velocity
/**
* XML element: <T0>.
* FITS keyword: HIERARCH GYOTO PatternDisk t0
*/
double t0_; ///< Date for which i=0 corresponds to phi=0
double dnu_; ///< Frequency scale of PatternDisk::emission_ in Hz
double nu0_; ///< Lowest frequency provided in PatternDisk::emission_ in Hz
size_t nnu_; ///< Number of frequencies provided in PatternDisk::emission_
double dphi_; ///< δφ between two grid columns
double phimin_;///< Minimum φ in grid
size_t nphi_; ///< Grid size in the φ direction
double phimax_; ///< Maximum φ in grid
/**
* XML elment: <RepeatPhi>.
* FITS keyword: HIERARCH GYOTO PatternDisk RepeatPhi
*/
size_t repeat_phi_; ///< Number of times the pattern should be repeated to cover [0, 2Π]
double dr_; ///< Radius step
size_t nr_; ///< Number of rows in the patternGrid size in the r direction
// Constructors - Destructor
// -------------------------
public:
PatternDisk(); ///< Standard constructor
PatternDisk(const PatternDisk& ) ;///< Copy constructor
virtual PatternDisk* clone () const; ///< Cloner
virtual ~PatternDisk() ; ///< Destructor
// Accessors
// ---------
public:
using ThinDisk::setInnerRadius;
virtual void setInnerRadius(double);
using ThinDisk::setOuterRadius;
virtual void setOuterRadius(double);
/**
* Unit: radians per geometrical unit time.
*/
virtual void setPatternVelocity(double); ///< Set PatternDisk::Omega_
virtual double getPatternVelocity(); ///< Get PatternDisk::Omega_
/// Read parameters and arrays from FITS file
virtual void fitsRead(std::string filename_);
/// Write parameters and arrays to FITS file
virtual void fitsWrite(std::string filename_);
/// Set PatternDisk::emission_
/**
* The pointer is copied directly, not the array content.
*
* This is a low-level function. Beware that:
* - previously allocated array will not be freed automatically;
* - array attached when the destructor is called will be freed.
*/
void setEmission(double * pattern);
/// Set PatternDisk::velocity__
/**
* The pointer is copied directly, not the array content.
*
* This is a low-level function. Beware that:
* - previously allocated array will not be freed automatically;
* - array attached when the destructor is called will be freed.
*/
void setVelocity(double * pattern);
/// Set PatternDisk::radius_
/**
* The pointer is copied directly, not the array content.
*
* This is a low-level function. Beware that:
* - previously allocated array will not be freed automatically;
* - array attached when the destructor is called will be freed.
*/
void setRadius(double * pattern);
/// Set PatternDisk::emission_
/**
* PatternDisk::emission_ is freed if not NULL, reallocated, and
* pattern is copied into emission_.
*
* If PatternDisk::opacity_, PatternDisk::velocity_ or
* PatternDisk::radius_ have been set previously with mismatching
* sizes, they are deallocated too.
*
* Finally, PatternDisk::nnu_, PatternDisk::nphi_, and
* PatternDisk::nr_ are set according to naxes.
*
* \param pattern Array to copy as emission_. May be NULL in which
* case emission_ is simply deallocated and set to NULL.
*
* \param naxes { nnu_, nphi_, nr_ }.
*/
virtual void copyIntensity(double const * const pattern = NULL,
size_t const naxes[3] = NULL);
virtual double const * getIntensity() const;///< Get PatternDisk::emission_
virtual void getIntensityNaxes( size_t naxes[3] ) const ; ///< Get PatternDisk::nnu_, PatternDisk::nphi_, and PatternDisk::nr_
/**
* \brief Set PatternDisk::opacity_
*
* PatternDisk::opacity_ is first freed if not NULL and set to NULL.
*
* If pattern is not NULL, PatternDisk::emission_ must have been set
* previously with matching dimensions. PatternDisk::opacity_ is
* then reallocated, and pattern is copied into opacity_.
*
* \param pattern Array to copy as opacity_. May be NULL in which
* case opacity_ is simply deallocated and set to NULL.
*
* \param naxes { nnu_, nphi_, nr_ }.
*/
virtual void copyOpacity(double const * const pattern = NULL,
size_t const naxes[3] = NULL);
virtual double const * getOpacity() const; ///< Get PatternDisk::opacity_
/// Set PatternDisk::velocity_
/**
* PatternDisk::velocity_ is first freed if not NULL and set to NULL.
*
* If pattern is not NULL, PatternDisk::emission_ must have been set
* previously with matching dimensions. PatternDisk::velocity_ is
* then reallocated, and pattern is copied into velocity_.
*
* \param pattern Array to copy as velocity_. May be NULL in which
* case velocity_ is simply deallocated and set to NULL.
*
* \param naxes { nphi_, nr_ }.
*/
virtual void copyVelocity(double const * const pattern = NULL,
size_t const naxes[2] = NULL);
virtual double const * getVelocity() const;///< Get PatternDisk::velocity_
/// Set PatternDisk::radius_
/**
* PatternDisk::radius_ is first freed if not NULL and set to NULL.
*
* If pattern is not NULL, PatternDisk::emission_ must have been set
* previously with matching dimensions. PatternDisk::radius_ is
* then reallocated, and pattern is copied into radius_.
*
* \param pattern Array to copy as radius_. May be NULL in which
* case radius_ is simply deallocated and set to NULL.
*
* \param nr size of radius array.
*/
virtual void copyGridRadius(double const * const pattern = NULL,
size_t nr = 0 );
virtual double const * getGridRadius() const; ///< Get PatternDisk::radius_
virtual void repeatPhi(size_t n); ///< Set PatternDisk::repeat_phi_
virtual size_t repeatPhi() const; ///< Get PatternDisk::repeat_phi_
virtual void nu0(double freq); ///< Set PatternDisk::nu0_
virtual double nu0() const; ///< Get PatternDisk::nu0_
virtual void dnu(double dfreq); ///< Set PatternDisk::dnu_
virtual double dnu() const; ///< Get PatternDisk::dnu_
void phimin(double phimin); ///< Set PatternDisk::phimin_
double phimin() const; ///< Get PatternDisk::phimin_
void phimax(double phimax); ///< Set PatternDisk::phimax_
double phimax() const; ///< Get PatternDisk::phimax_
virtual int setParameter(std::string name,
std::string content,
std::string unit);
protected:
void getIndices(size_t i[3], double const co[4], double nu=0.) const ;
///< Get emission_ cell corresponding to position co[4]
public:
using ThinDisk::emission;
virtual double emission(double nu_em, double dsem,
double c_ph[8], double c_obj[8]) const;
virtual double transmission(double nu_em, double dsem, double coord[8]) const;
virtual void getVelocity(double const pos[4], double vel[4]) ;
public:
#ifdef GYOTO_USE_XERCES
virtual void fillElement(FactoryMessenger *fmp) const ;
virtual void setParameters(FactoryMessenger *fmp);
#endif
};
#endif
|