mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
A turbulent atmosphere simulator.
Generate multi-layer phase screens using PSD filtering with the FFT. Manages the shifting and combination of the phase screens (without propagation).
The turbSubHarmonic class provides low-frequency sub-harmonics if desired
The turbLayer class manages the actual interpolation.
add facility for switching interpolators
need to include wrap detection when using subharmonics (e.g. frames needs to be right)
Definition at line 81 of file turbAtmosphere.hpp.
#include <ao/sim/turbAtmosphere.hpp>
Public Member Functions | |
int | wfPS (realT ps) |
dummy function for simulatedAOSystem. Does nothing. | |
Construction and Configuration | |
turbAtmosphere () | |
Default c'tor. | |
void | setup (uint32_t wfSz, uint32_t buffSz, aoSystemT *aosys, uint32_t shLevel) |
Setup the overall atmosphere. | |
void | wfSz (uint32_t ws) |
Set the wavefront size. | |
uint32_t | wfSz () |
Get the wavefront size. | |
void | buffSz (uint32_t bs) |
Set the interpolation buffer size. | |
uint32_t | buffSz () |
Get the interpolation buffer size. | |
void | aosys (aoSystemT *aos) |
Set the pointer to an AO system object. | |
aoSystemT * | aosys () |
Get the pointer to an AO system object. | |
void | shLevel (uint32_t shl) |
Set the subharmonic level. | |
uint32_t | shLevel () |
Get the subharmonic level. | |
void | outerSubHarmonics (bool osh) |
Set whether outer subharmonics are included. | |
bool | outerSubHarmonics () |
Get whether outer subharmonics are included. | |
void | shPreCalc (bool shp) |
Set whether subharmonic modes are pre-calculated. | |
bool | shPreCalc () |
Get whether subharmonic modes are pre-calculated. | |
void | retain (bool rtn) |
Set whether memory for screen generation is retained. | |
bool | retain () |
Get whether memory for screen generation is retained. | |
void | forceGen (bool fg) |
Set whether new screen generation is forced. | |
bool | forceGen () |
Get whether new screen generation is forced. | |
void | dataDir (const std::string &dd) |
Set the data directory for saving phase screens. | |
std::string | dataDir () |
Get the data directory for saving phase screens. | |
void | setLayers (const std::vector< size_t > &scrnSz) |
Setup the layers and prepare them for phase screen generation. | |
void | setLayers (const size_t scrnSz) |
Setup the layers and prepare them for phase screen generation. | |
uint32_t | nLayers () |
Get the number of layers. | |
turbLayer< aoSystemT > & | layer (uint32_t n) |
Get a layer. | |
math::normDistT< realT > & | normVar () |
Get the random number generator. | |
Screen Generation | |
void | genLayers () |
Generate all phase screens. | |
![]() | |
void | changed () |
Increment the counter. | |
changeT | change () |
Get the value of the counter. | |
Protected Attributes | |
Configuration Data | |
uint32_t | m_wfSz { 0 } |
Size of the wavefront in pixels. | |
uint32_t | m_buffSz { 0 } |
Buffer to apply around wavefront for interpolation. | |
aoSystemT * | m_aosys { nullptr } |
The AO system object containing all system parameters. See aoSystem. | |
uint32_t | m_shLevel { 0 } |
bool | m_outerSubHarmonics { true } |
bool | m_shPreCalc { true } |
bool | m_retain { false } |
bool | m_forceGen { true } |
std::string | m_dataDir |
imageT * | m_pupil { 0 } |
A pointer to the pupil mask. | |
realT | m_timeStep { 0 } |
Length of each iteration, in seconds. | |
Internal State | |
std::vector< turbLayer< aoSystemT > > | m_layers |
Vector of turbulent layers. | |
std::vector< turbSubHarmonic< turbAtmosphere > > | m_subHarms |
Sub-harmonic layers. | |
size_t | m_frames { 0 } |
Length of the turbulence sequence. | |
int | m_nWf { 0 } |
Number of iterations which have occurred. | |
math::normDistT< realT > | m_normVar |
Normal random deviate generator. This seeded in the constructor. | |
Additional Inherited Members | |
![]() | |
typedef uint64_t | changeT |
The integer type of the counter. | |
mx::AO::sim::turbAtmosphere< aoSystemT >::turbAtmosphere | ( | ) |
Default c'tor.
Definition at line 342 of file turbAtmosphere.hpp.
aoSystemT * mx::AO::sim::turbAtmosphere< aoSystemT >::aosys | ( | ) |
Get the pointer to an AO system object.
Definition at line 399 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::aosys | ( | aoSystemT * | aos | ) |
Set the pointer to an AO system object.
see m_aosys
[in] | aos | the new pointer to an AO system object |
Definition at line 389 of file turbAtmosphere.hpp.
uint32_t mx::AO::sim::turbAtmosphere< aoSystemT >::buffSz | ( | ) |
Get the interpolation buffer size.
Definition at line 383 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::buffSz | ( | uint32_t | bs | ) |
Set the interpolation buffer size.
see m_buffSz
[in] | bs | the new buffer size |
Definition at line 373 of file turbAtmosphere.hpp.
std::string mx::AO::sim::turbAtmosphere< aoSystemT >::dataDir | ( | ) |
Get the data directory for saving phase screens.
Definition at line 497 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::dataDir | ( | const std::string & | dd | ) |
Set the data directory for saving phase screens.
see m_dataDir
[in] | dd | the new data directory for phase screen saving |
Definition at line 486 of file turbAtmosphere.hpp.
bool mx::AO::sim::turbAtmosphere< aoSystemT >::forceGen | ( | ) |
Get whether new screen generation is forced.
Definition at line 480 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::forceGen | ( | bool | fg | ) |
Set whether new screen generation is forced.
see m_forceGen
[in] | fg | the new value of the flag controlling whether screen generation is forced |
Definition at line 469 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::genLayers | ( | ) |
Generate all phase screens.
Loads them from disk if possible and m_forceGen == false.
Deallocates working memory when done, unless m_retain == true.
Definition at line 631 of file turbAtmosphere.hpp.
References mx::fits::fitsFile< dataT >::read(), and mx::fits::fitsFile< dataT >::write().
turbLayer< aoSystemT > & mx::AO::sim::turbAtmosphere< aoSystemT >::layer | ( | uint32_t | n | ) |
Get a layer.
Definition at line 573 of file turbAtmosphere.hpp.
uint32_t mx::AO::sim::turbAtmosphere< aoSystemT >::nLayers | ( | ) |
Get the number of layers.
Definition at line 567 of file turbAtmosphere.hpp.
math::normDistT< typename aoSystemT::realT > & mx::AO::sim::turbAtmosphere< aoSystemT >::normVar | ( | ) |
Get the random number generator.
Definition at line 584 of file turbAtmosphere.hpp.
bool mx::AO::sim::turbAtmosphere< aoSystemT >::outerSubHarmonics | ( | ) |
Get whether outer subharmonics are included.
Definition at line 431 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::outerSubHarmonics | ( | bool | osh | ) |
Set whether outer subharmonics are included.
[in] | osh | the new value of flag controlling outer subharmonics |
Definition at line 421 of file turbAtmosphere.hpp.
bool mx::AO::sim::turbAtmosphere< aoSystemT >::retain | ( | ) |
Get whether memory for screen generation is retained.
Definition at line 463 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::retain | ( | bool | rtn | ) |
Set whether memory for screen generation is retained.
see m_retain
[in] | rtn | the new value of the flag controlling whether memory is retained |
Definition at line 453 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::setLayers | ( | const size_t | scrnSz | ) |
Setup the layers and prepare them for phase screen generation.
This sets all layer phase screens to be the same size.
[in] | scrnSz | the screen sizes for all layers. |
Definition at line 553 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::setLayers | ( | const std::vector< size_t > & | scrnSz | ) |
Setup the layers and prepare them for phase screen generation.
The number of entries in scrnSz
must mach the number of layers in the atmosphere of m_aosys.
[in] | scrnSz | the screen sizes for each layer. |
Definition at line 503 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::setup | ( | uint32_t | wfSz, |
uint32_t | buffSz, | ||
aoSystemT * | aosys, | ||
uint32_t | shLevel | ||
) |
Setup the overall atmosphere.
[in] | wfSz | The size of the wavefront in pixels. |
[in] | buffSz | The size of the interpolation buffer to use. |
[in] | aosys | Pointer to an AO System. See m_aosys. |
[in] | shLevel | number of subharmonic levels to use. 0 turns off subharmonics. See m_shLevel. |
Definition at line 348 of file turbAtmosphere.hpp.
uint32_t mx::AO::sim::turbAtmosphere< aoSystemT >::shLevel | ( | ) |
Get the subharmonic level.
Definition at line 415 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::shLevel | ( | uint32_t | shl | ) |
Set the subharmonic level.
see m_shLevel
[in] | shl | the new subharmonic level |
Definition at line 405 of file turbAtmosphere.hpp.
bool mx::AO::sim::turbAtmosphere< aoSystemT >::shPreCalc | ( | ) |
Get whether subharmonic modes are pre-calculated.
Definition at line 447 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::shPreCalc | ( | bool | shp | ) |
Set whether subharmonic modes are pre-calculated.
see m_shPreCalc
[in] | shp | the new value of flag controlling subharmonic mode precalculation |
Definition at line 437 of file turbAtmosphere.hpp.
int mx::AO::sim::turbAtmosphere< aoSystemT >::wfPS | ( | realT | ps | ) |
dummy function for simulatedAOSystem. Does nothing.
Definition at line 782 of file turbAtmosphere.hpp.
uint32_t mx::AO::sim::turbAtmosphere< aoSystemT >::wfSz | ( | ) |
Get the wavefront size.
Definition at line 367 of file turbAtmosphere.hpp.
void mx::AO::sim::turbAtmosphere< aoSystemT >::wfSz | ( | uint32_t | ws | ) |
Set the wavefront size.
see m_wfSz
[in] | ws | the new wavefront size |
Definition at line 357 of file turbAtmosphere.hpp.
|
protected |
The AO system object containing all system parameters. See aoSystem.
Definition at line 97 of file turbAtmosphere.hpp.
|
protected |
Buffer to apply around wavefront for interpolation.
Definition at line 95 of file turbAtmosphere.hpp.
|
protected |
Specifies a path where phase screens are stored. Leaving this unset or "" is equivalent to m_forceGen` == true`.
Definition at line 123 of file turbAtmosphere.hpp.
|
protected |
Force generation of new screens if true. Note that this class does not presently do any checks of saved screens to verify they match the current configuration. Set to true with caution.
Definition at line 116 of file turbAtmosphere.hpp.
|
protected |
Length of the turbulence sequence.
Definition at line 140 of file turbAtmosphere.hpp.
|
protected |
Vector of turbulent layers.
Definition at line 136 of file turbAtmosphere.hpp.
|
protected |
Normal random deviate generator. This seeded in the constructor.
Definition at line 144 of file turbAtmosphere.hpp.
|
protected |
Number of iterations which have occurred.
Definition at line 142 of file turbAtmosphere.hpp.
|
protected |
Whether or not the outer subharmonics are included. See m_turbSubHarmonic.
Definition at line 103 of file turbAtmosphere.hpp.
|
protected |
A pointer to the pupil mask.
Definition at line 127 of file turbAtmosphere.hpp.
|
protected |
Whether or not to retain working memory after screen generation. One would set to true if many screens will be calculated in monte carlo fashion. For a standard case of one set of screens being shifted by wind velocity, this should be false to minimize memory use.
Definition at line 110 of file turbAtmosphere.hpp.
|
protected |
Number of subharmonic levels. 0 means no subharmonics. Generally only 1 level is needed to obtain good Tip/Tilt results. See turbSubHarmonic.
Definition at line 99 of file turbAtmosphere.hpp.
|
protected |
Whether or not to pre-calculate the subharmonic modes. This is a trade of speed vs. memory use. See turbSubHarmonic.
Definition at line 106 of file turbAtmosphere.hpp.
|
protected |
Sub-harmonic layers.
Definition at line 138 of file turbAtmosphere.hpp.
|
protected |
Length of each iteration, in seconds.
Definition at line 129 of file turbAtmosphere.hpp.
|
protected |
Size of the wavefront in pixels.
Definition at line 93 of file turbAtmosphere.hpp.