32#include "../../mxError.hpp"
33#include "../../math/constants.hpp"
34#include "../../math/func/jinc.hpp"
58std::string compName(
int cc );
60int compNum(
const std::string &name );
82template <
typename realT>
97 const char *m_id =
"von Karman";
174 template <
class psdParamsT>
188 template <
class psdParamsT>
206 template <
typename iosT>
222template <
typename realT>
227template <
typename realT>
238template <
typename realT>
244template <
typename realT>
250template <
typename realT>
256template <
typename realT>
262template <
typename realT>
265 return m_scintillation;
268template <
typename realT>
271 m_scintillation = sc;
274template <
typename realT>
280template <
typename realT>
283 if( cc != PSDComponent::phase && cc != PSDComponent::amplitude && cc != PSDComponent::dispPhase &&
284 cc != PSDComponent::dispAmplitude )
286 mxError(
"vonKarmanSpectrum::component", MXE_INVALIDARG,
"Unknown component" );
294template <
typename realT>
300template <
typename realT>
306template <
typename realT>
307template <
class psdParamsT>
317 if( par.L_0( layer_i ) > 0 )
319 k02 = ( 1 ) / ( par.L_0( layer_i ) * par.L_0( layer_i ) );
324 if( k02 == 0 && k == 0 )
329 realT Ppiston, Ptiptilt;
331 if( ( m_subPiston || m_subTipTilt ) )
335 mxError(
"aoAtmosphere", MXE_PARAMNOTSET,
"Diameter D not set for Piston and/or TT subtraction." );
358 return ( par.beta( layer_i ) * pow( k * k + k02, -1 * par.alpha( layer_i ) / 2 ) + par.beta_0( layer_i ) ) *
359 ( 1.0 - Ppiston - Ptiptilt ) * sec_zeta;
362template <
typename realT>
363template <
class psdParamsT>
373 realT psd = operator()( par, layer_i, k, secZeta );
375 if( par.nonKolmogorov() ==
false )
377 psd *= pow( par.lam_0() / lambda, 2 );
383 if( m_scintillation )
385 if( m_component == PSDComponent::phase )
387 psd *= ( par.X( k, lambda, secZeta ) );
389 else if( m_component == PSDComponent::amplitude )
391 psd *= ( par.Y( k, lambda, secZeta ) );
393 else if( m_component == PSDComponent::dispPhase )
395 psd *= ( par.X_Z( k, lambda, lambda_wfs, secZeta ) );
397 else if( m_component == PSDComponent::dispAmplitude )
399 mxError(
"vonKarmanSpectrum::operator()", MXE_NOTIMPL,
"Dispersive-aniso amplitude not implemented" );
404 mxError(
"vonKarmanSpectrum::operator()", MXE_INVALIDARG,
"Invalid component specified" );
426template <
typename realT>
427template <
typename iosT>
430 ios <<
"# PSD Parameters:" <<
'\n';
431 ios <<
"# ID = " << m_id <<
'\n';
432 ios <<
"# D = " << m_D <<
'\n';
433 ios <<
"# subPiston = " << std::boolalpha << m_subPiston <<
'\n';
434 ios <<
"# subTipTilt = " << std::boolalpha << m_subTipTilt <<
'\n';
435 ios <<
"# Scintillation = " << std::boolalpha << m_scintillation <<
'\n';
436 ios <<
"# Component = " << PSDComponent::compName( m_component ) <<
'\n';
440template <
typename realT>
443 using namespace mx::app;
453 "Aperture diameter. Used for piston and tip/tilt subtraction." );
454 config.
add(
"psd.subPiston",
"",
"psd.subPiston", argType::Required,
"psd",
"subPiston",
false,
"real",
"" );
455 config.
add(
"psd.subTipTilt",
"",
"psd.subTipTilt", argType::Required,
"psd",
"subTipTilt",
false,
"real",
"" );
457 "psd.scintillation",
"",
"psd.scintillation", argType::Required,
"psd",
"scintillation",
false,
"real",
"" );
458 config.
add(
"psd.component",
"",
"psd.component", argType::Required,
"psd",
"component",
false,
"real",
"" );
461template <
typename realT>
466 config( m_D,
"psd.D" );
467 config( m_subPiston,
"psd.subPiston" );
468 config( m_subTipTilt,
"psd.subTipTilt" );
469 config( m_scintillation,
"psd.scintillation" );
471 std::string cn = PSDComponent::compName( m_component );
472 config( cn,
"psd.component" );
473 component( PSDComponent::compNum( cn ) );
Provides a class to specify atmosphere parameters.
Calculate and provide constants related to adaptive optics.
@ dispAmplitude
The amplitude component of dispersive anisoplanatism.
@ dispPhase
The phase component of dispersive anisoplanatism.
@ amplitude
The amplitude.
T2 jincN(const T1 &v, const T2 &x)
The JincN function.
T jinc(const T &x)
The Jinc function.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Manage calculations using the von Karman spatial power spectrum.
bool subTipTilt()
Get the value of m_subTipTilt.
realT D()
Get the value of the diameter m_D.
realT operator()(psdParamsT &par, size_t layer_i, realT k, realT sec_zeta)
Get the value of the PSD at spatial frequency k and a zenith distance.
iosT & dumpPSD(iosT &ios)
Get the fitting error for an actuator spacing d.
void setupConfig(app::appConfigurator &config)
Setup the configurator to configure this class.
bool subPiston()
Get the value of m_subPiston.
realT m_D
Diameter used for piston and tip/tilt subtraction, in m. Default is 1 m.
vonKarmanSpectrum()
Default Constructor.
bool scintillation()
Get the value of m_scintillation.
void loadConfig(app::appConfigurator &config)
Load the configuration of this class from a configurator.
int component()
Get the value of m_component.
bool m_subTipTilt
flag controlling whether tip and tilt are subtracted from the PSD. Default is false.
bool m_scintillation
flag controlling whether or not scintillation is included
bool m_subPiston
flag controlling whether piston is subtracted from the PSD. Default is true.
Class to manage a set of configurable values, and read their values from config/ini files and the com...
void add(const configTarget &tgt)
Add a configTarget.