mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
A class to manage low-frequency sub-harmonic phase screen generation in atmospheric turbulence.
Implements the method of Johansson and Gavel (1994)[10]. This is needed to generate adequate tip/tilt variance with large outer scales.
Definition at line 58 of file turbSubHarmonic.hpp.
#include <ao/sim/turbSubHarmonic.hpp>
Public Member Functions | |
Construction | |
Configuration | |
void | turbAtmo (turbAtmosphereT *atm) |
Set the pointer to the turbulent atmosphere. | |
turbAtmosphereT * | turbAtmo () |
Get the pointer to the AO atmosphere. | |
void | level (uint32_t ml) |
Set the subharmonic level to apply. | |
uint32_t | level () |
Get the subharmonic level. | |
void | outerSubHarmonics (bool osh) |
Set whether or not the outer subharmonics are included. | |
bool | outerSubHarmonics () |
Get whether or not the outer subharmonics are included. | |
void | preCalc (bool pc) |
Set whether or not to pre-calculate the modes. | |
bool | preCalc () |
Get whether or not the modes are pre-calculated. | |
Screen Generation | |
void | initGrid (uint32_t layerNo) |
Allocate needed memory and initialize the subharmonic transform. | |
void | screen (improc::eigenImage< realT > &scrn) |
Generate a realization of the subharmonic phase screen and add it to the input screen. | |
void | deinit () |
Deallocate memory. | |
![]() | |
void | changed () |
Increment the counter. | |
changeT | change () |
Get the value of the counter. | |
Protected Attributes | |
Configuration Parameters | |
turbAtmosphereT * | m_turbAtmo { nullptr } |
Pointer to the parent atmosphere object. | |
unsigned | m_level { 1 } |
The subharmonic level to apply. | |
bool | m_outerSubHarmonics { true } |
Whether or not to include the outer subharmonics. | |
bool | m_preCalc { false } |
whether or not the modes are pre-calculated. | |
Internal State | |
uint32_t | m_scrnSz |
The wavefront screen size from the layer being simulated. | |
std::vector< realT > | m_noise |
Vector of Gaussian deviates prepared for each screen generation. | |
std::vector< realT > | m_m |
m-coordinate fractional spatial frequency indices of the subharmonics | |
std::vector< realT > | m_n |
n-coordinate fractional spatial frequency indices of the subharmonics | |
improc::eigenCube< realT > | m_modes |
the pre-calculated modes | |
Additional Inherited Members | |
![]() | |
typedef uint64_t | changeT |
The integer type of the counter. | |
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::deinit | ( | ) |
Deallocate memory.
Definition at line 467 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::initGrid | ( | uint32_t | layerNo | ) |
Allocate needed memory and initialize the subharmonic transform.
Definition at line 233 of file turbSubHarmonic.hpp.
References mx::math::func::jinc(), mx::math::func::jincN(), and mx::math::six_fifths().
uint32_t mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::level | ( | ) |
Get the subharmonic level.
Definition at line 195 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::level | ( | uint32_t | ml | ) |
Set the subharmonic level to apply.
[in] | ml | the new level |
Definition at line 185 of file turbSubHarmonic.hpp.
bool mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::outerSubHarmonics | ( | ) |
Get whether or not the outer subharmonics are included.
Definition at line 211 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::outerSubHarmonics | ( | bool | osh | ) |
Set whether or not the outer subharmonics are included.
[in] | osh | the new value of the m_outerSubHarmonics flag |
Definition at line 201 of file turbSubHarmonic.hpp.
bool mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::preCalc | ( | ) |
Get whether or not the modes are pre-calculated.
Definition at line 227 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::preCalc | ( | bool | pc | ) |
Set whether or not to pre-calculate the modes.
[in] | pc | the new value of the m_preCalc flag |
Definition at line 217 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::screen | ( | improc::eigenImage< realT > & | scrn | ) |
Generate a realization of the subharmonic phase screen and add it to the input screen.
[in] | scrn | the input phase screen to which to add the low-frequency screen. Must be m_scrnSz X m_scrnsz |
Definition at line 390 of file turbSubHarmonic.hpp.
References mx::math::six_fifths().
turbAtmosphereT * mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::turbAtmo | ( | ) |
Get the pointer to the AO atmosphere.
Definition at line 179 of file turbSubHarmonic.hpp.
void mx::AO::sim::turbSubHarmonic< turbAtmosphereT >::turbAtmo | ( | turbAtmosphereT * | atm | ) |
Set the pointer to the turbulent atmosphere.
[in] | atm | the new pointer to an AO atmosphere |
Definition at line 169 of file turbSubHarmonic.hpp.
|
protected |
The subharmonic level to apply.
Definition at line 72 of file turbSubHarmonic.hpp.
|
protected |
m-coordinate fractional spatial frequency indices of the subharmonics
Definition at line 88 of file turbSubHarmonic.hpp.
|
protected |
the pre-calculated modes
Definition at line 93 of file turbSubHarmonic.hpp.
|
protected |
n-coordinate fractional spatial frequency indices of the subharmonics
Definition at line 89 of file turbSubHarmonic.hpp.
|
protected |
Vector of Gaussian deviates prepared for each screen generation.
Definition at line 86 of file turbSubHarmonic.hpp.
|
protected |
Whether or not to include the outer subharmonics.
Definition at line 74 of file turbSubHarmonic.hpp.
|
protected |
whether or not the modes are pre-calculated.
Definition at line 76 of file turbSubHarmonic.hpp.
|
protected |
The wavefront screen size from the layer being simulated.
Definition at line 84 of file turbSubHarmonic.hpp.
|
protected |
Pointer to the parent atmosphere object.
Definition at line 70 of file turbSubHarmonic.hpp.