|
casacore
|
Nutation class and calculations. More...
#include <Nutation.h>
Public Types | |
| enum | NutationTypes { NONE, IAU1980, B1950, IAU2000A, IAU2000B, IAU2000, STANDARD } |
| Types of known Nutation calculations (at 1995/09/04 STANDARD == IAU1980, after 2004/01/01 it will be IAU2000B)) More... | |
Public Member Functions | |
| Nutation () | |
| Default constructor, generates default J2000 Nutation identification. More... | |
| Nutation (const Nutation &other) | |
| Copy constructor. More... | |
| Nutation (NutationTypes type) | |
| Constructor with type. More... | |
| Nutation & | operator= (const Nutation &other) |
| Copy assignment. More... | |
| ~Nutation () | |
| const Euler & | operator() (Double epoch) |
| Return the Nutation angles. More... | |
| const Euler & | derivative (Double epoch) |
| Return derivative of Nutation (d-1) More... | |
| void | init () |
| Re-initialise Nutation object. More... | |
| void | init (NutationTypes type) |
| void | refresh () |
| Refresh calculations. More... | |
| Double | eqox (Double epoch) |
| Get the equation of equinox. More... | |
| Quantity | getEqoxAngle (Double epoch) |
| Quantity | getEqoxAngle (Double epoch, const Unit &unit) |
| Double | derivativeEqox (Double epoch) |
| Get the derivative of the equation of equinoxes in d-1 More... | |
| Double | eqoxCT (Double epoch) |
| Get the complimentary terms of the equation of equinoxes. More... | |
| Double | derivativeEqoxCT (Double epoch) |
| Get the derivative of the complimentary terms of the equation of equinoxes. More... | |
Static Public Attributes | |
| static const Double | INTV |
| Interval to be used for linear approximation (in days) More... | |
Private Member Functions | |
| void | copy (const Nutation &other) |
| Make a copy. More... | |
| void | fill () |
| Fill an empty copy. More... | |
| void | calcNut (Double t, Bool calcDer=False) |
| Calculate Nutation angles for time t; also derivatives if True given. More... | |
Private Attributes | |
| NutationTypes | method_p |
| Method to be used. More... | |
| Double | checkEpoch_p |
| Check epoch for linear approximation. More... | |
| Double | checkDerEpoch_p |
| Check epoch for calculation of derivatives. More... | |
| Double | nval_p [3] |
| Cached calculated angles. More... | |
| Double | dval_p [3] |
| Cached derivatives. More... | |
| Double | eqeq_p |
| Cached equation of equinoxes. More... | |
| Double | deqeq_p |
| Cached derivative equation of equinoxes. More... | |
| Double | neval_p |
| Cached complimentary terms equation of equinoxes. More... | |
| Double | deval_p |
| Cached derivative of complimentary terms equation of equinoxes. More... | |
| Int | lres_p |
| To be able to use references rather than copies, and also to use these references in simple (up to 4 terms of Nutation results) expressions, results are calculated in circulating buffer. More... | |
| Euler | result_p [4] |
| Last calculation. More... | |
Static Private Attributes | |
| static uInt | myInterval_reg |
| Interpolation interval. More... | |
| static uInt | myUseiers_reg |
| IERS use. More... | |
| static uInt | myUsejpl_reg |
| JPL use. More... | |
Nutation class and calculations.
Public interface
Nutation forms the class for Nutation calculations. It is a simple container with the selected method, and the mean epoch. It acts as a cache for values and their derivatives, to enable fast calculations for time epochs close together (see the aipsrc variable measures.nutation.d_interval).
The calculation method is selected from one of the following:
Epochs can be specified as the MJD (with defined constants MeasData::MJD2000 and MeasData::MJDB1950 or the actual MJD), leading to the following constructors:
Actual Nutation for a certain Epoch is calculated by the () operator as Nutation(epoch), with epoch Double MJD. Values are returned as an Euler. The derivative (d-1) can be obtained as well by derivative(epoch).
A Nutation can be re-initialed with a different method and/or zero epoch with the init() functions (same format as constructors). To bypass the full calculation actual returned values are calculated using the derivative if within about 2 hours (error less than about 10-5 mas). A call to refresh() will re-initiate calculations from scratch.
The following details can be set with the Aipsrc mechanism:
The normal way to use Nutation is by using the MeasConvert class.
To calculate the Nutation angles. An alternate route could have been a global function, but having a simple container allows caching of some calculations for speed.
Using MJD (JD-2400000.5) rather than JD is for precision reasons.
Definition at line 139 of file Nutation.h.
Types of known Nutation calculations (at 1995/09/04 STANDARD == IAU1980, after 2004/01/01 it will be IAU2000B))
| Enumerator | |
|---|---|
| NONE | |
| IAU1980 | |
| B1950 | |
| IAU2000A | |
| IAU2000B | |
| IAU2000 | |
| STANDARD | |
Definition at line 148 of file Nutation.h.
| casacore::Nutation::Nutation | ( | ) |
Default constructor, generates default J2000 Nutation identification.
| casacore::Nutation::Nutation | ( | const Nutation & | other | ) |
Copy constructor.
|
explicit |
Constructor with type.
| casacore::Nutation::~Nutation | ( | ) |
Calculate Nutation angles for time t; also derivatives if True given.
|
private |
Make a copy.
Get the derivative of the equation of equinoxes in d-1
Get the derivative of the complimentary terms of the equation of equinoxes.
Get the complimentary terms of the equation of equinoxes.
|
private |
Fill an empty copy.
| void casacore::Nutation::init | ( | ) |
Re-initialise Nutation object.
| void casacore::Nutation::init | ( | NutationTypes | type | ) |
| void casacore::Nutation::refresh | ( | ) |
Refresh calculations.
|
private |
Check epoch for calculation of derivatives.
Definition at line 204 of file Nutation.h.
|
private |
Check epoch for linear approximation.
Definition at line 202 of file Nutation.h.
|
private |
Cached derivative equation of equinoxes.
Definition at line 212 of file Nutation.h.
|
private |
Cached derivative of complimentary terms equation of equinoxes.
Definition at line 216 of file Nutation.h.
|
private |
Cached derivatives.
Definition at line 208 of file Nutation.h.
|
private |
Cached equation of equinoxes.
Definition at line 210 of file Nutation.h.
|
static |
Interval to be used for linear approximation (in days)
Definition at line 143 of file Nutation.h.
|
private |
To be able to use references rather than copies, and also to use these references in simple (up to 4 terms of Nutation results) expressions, results are calculated in circulating buffer.
Definition at line 220 of file Nutation.h.
|
private |
Method to be used.
Definition at line 200 of file Nutation.h.
|
staticprivate |
Interpolation interval.
Definition at line 224 of file Nutation.h.
|
staticprivate |
IERS use.
Definition at line 226 of file Nutation.h.
|
staticprivate |
JPL use.
Definition at line 228 of file Nutation.h.
|
private |
Cached complimentary terms equation of equinoxes.
Definition at line 214 of file Nutation.h.
|
private |
Cached calculated angles.
Definition at line 206 of file Nutation.h.
|
private |
Last calculation.
Definition at line 222 of file Nutation.h.
1.8.5