785 const std::string &psdDir,
790 realT lpRegPrecision,
791 std::vector<realT> &mags,
793 bool uncontrolledLifetimes,
798 std::string dir = psdDir +
"/" + subDir;
801 mkdir( dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH );
804 std::string fn = dir +
'/' +
"params.txt";
807 fout <<
"#---------------------------\n";
808 m_aosys->dumpAOSystem( fout );
809 fout <<
"#---------------------------\n";
810 fout <<
"# Analysis Parameters\n";
811 fout <<
"# mnMax = " << mnMax <<
'\n';
812 fout <<
"# mnCon = " << mnCon <<
'\n';
813 fout <<
"# lpNc = " << lpNc <<
'\n';
815 for(
size_t i = 0; i < mags.size() - 1; ++i )
816 fout << mags[i] <<
",";
817 fout << mags[mags.size() - 1] <<
'\n';
818 fout <<
"# lifetimeTrials = " << lifetimeTrials <<
'\n';
819 fout <<
"# uncontrolledLifetimes = " << uncontrolledLifetimes <<
'\n';
820 fout <<
"# writePSDs = " << std::boolalpha << writePSDs <<
'\n';
821 fout <<
"# writeXfer = " << std::boolalpha << writeXfer <<
'\n';
827 realT fs = 1.0 / m_aosys->tauWFS();
828 realT tauWFS = m_aosys->tauWFS();
829 realT deltaTau = m_aosys->deltaTau();
831 std::vector<sigproc::fourierModeDef> fms;
833 sigproc::makeFourierModeFreqs_Rect( fms, 2 * mnMax );
834 size_t nModes = 0.5 * fms.size();
836 Eigen::Array<
realT, -1, -1> gains, vars, speckleLifetimes, gains_lp, vars_lp, speckleLifetimes_lp;
838 gains.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
839 vars.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
840 speckleLifetimes.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
842 gains( mnMax, mnMax ) = 0;
843 vars( mnMax, mnMax ) = 0;
844 speckleLifetimes( mnMax, mnMax ) = 0;
846 gains_lp.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
847 vars_lp.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
848 speckleLifetimes_lp.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
850 gains_lp( mnMax, mnMax ) = 0;
851 vars_lp( mnMax, mnMax ) = 0;
852 speckleLifetimes_lp( mnMax, mnMax ) = 0;
857 Eigen::Array<
realT, -1, -1> lpC;
861 lpC.resize( nModes, lpNc );
865 std::vector<realT> S_si, S_lp;
869 for(
size_t s = 0; s < mags.size(); ++s )
872 mkdir( psdOutDir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH );
877 mkdir( psdOutDir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH );
882 m_aosys->beta_p( 1, 1 );
886 for(
size_t s = 0; s < mags.size(); ++s )
888 m_aosys->starMag( mags[s] );
892 realT opticalGain{ 1.0 };
898 realT ncp = m_aosys->ncp_wfe();
899 m_aosys->ncp_wfe( 0 );
901 realT lam_sci = m_aosys->lam_sci();
902 m_aosys->lam_sci( m_aosys->lam_wfs() );
904 realT S = m_aosys->strehl();
905 std::cerr << S <<
"\n";
907 for(
int s = 0; s < 4; ++s )
909 m_aosys->opticalGain( S );
910 m_aosys->optd( m_aosys->optd() );
911 S = m_aosys->strehl();
912 std::cerr << S <<
"\n";
917 m_aosys->lam_sci( lam_sci );
918 m_aosys->ncp_wfe( ncp );
921 m_aosys->optd( m_aosys->optd() );
922 realT strehl = m_aosys->strehl();
926 realT localMag = mags[s];
932 realT gopt_lp, var_lp;
934 std::vector<realT> tfreq;
935 std::vector<realT> tPSDp;
939 std::vector<realT> tfreqHF;
940 std::vector<realT> tPSDpHF;
944 getGridPSD( tfreq, tPSDp, psdDir, 0, 1 );
947 while( tfreq[imax] <= 0.5 * fs )
950 if( imax > tfreq.size() - 1 )
954 if( imax < tfreq.size() - 1 && tfreq[imax] <= 0.5 * fs * ( 1.0 + 1e-7 ) )
961 tfreqHF.assign( tfreq.begin(), tfreq.end() );
964 tfreq.erase( tfreq.begin() + imax, tfreq.end() );
966 tPSDpPOL.resize( tfreq.size() );
969 std::vector<realT> tPSDn;
970 tPSDn.resize( tfreq.size() );
974 tflp.m_precision0 = lpRegPrecision;
976 mx::AO::analysis::clGainOpt<realT> go_si( tauWFS, deltaTau );
977 mx::AO::analysis::clGainOpt<realT> go_lp( tauWFS, deltaTau );
990 std::vector<std::complex<realT>> ETFxn;
991 std::vector<std::complex<realT>> NTFxn;
993 if( lifetimeTrials > 0 )
995 ETFxn.resize( tfreq.size() );
996 NTFxn.resize( tfreq.size() );
1021#pragma omp for schedule( dynamic, 5 )
1022 for(
size_t i = 0; i < nModes; ++i )
1028 if( fabs( (
realT)m / m_aosys->D() ) >= m_aosys->spatialFilter_ku() ||
1029 fabs( (
realT)n / m_aosys->D() ) >= m_aosys->spatialFilter_kv() )
1031 gains( mnMax + m, mnMax + n ) = 0;
1032 gains( mnMax - m, mnMax - n ) = 0;
1034 gains_lp( mnMax + m, mnMax + n ) = 0;
1035 gains_lp( mnMax - m, mnMax - n ) = 0;
1037 vars( mnMax + m, mnMax + n ) = 0;
1038 vars( mnMax - m, mnMax - n ) = 0;
1040 vars_lp( mnMax + m, mnMax + n ) = 0;
1041 vars_lp( mnMax - m, mnMax - n ) = 0;
1042 speckleLifetimes( mnMax + m, mnMax + n ) = 0;
1043 speckleLifetimes( mnMax - m, mnMax - n ) = 0;
1044 speckleLifetimes_lp( mnMax + m, mnMax + n ) = 0;
1045 speckleLifetimes_lp( mnMax - m, mnMax - n ) = 0;
1050 realT k = sqrt( m * m + n * n ) / m_aosys->D();
1053 getGridPSD( tPSDp, psdDir, m, n );
1060 tPSDpHF.assign( tPSDp.begin() + imax, tPSDp.end() );
1064 tPSDp.erase( tPSDp.begin() + imax, tPSDp.end() );
1071 if( m_uncorrectedOG )
1073 for(
size_t n = 0; n < tPSDp.size(); ++n )
1075 tPSDpPOL[n] = tPSDp[n] * pow( opticalGain, 2 );
1080 for(
size_t n = 0; n < tPSDp.size(); ++n )
1082 tPSDpPOL[n] = tPSDp[n];
1088 bool inside =
false;
1090 if( m_aosys->circularLimit() )
1092 if( m * m + n * n <= mnCon * mnCon )
1097 if( fabs( m ) <= mnCon && fabs( n ) <= mnCon )
1108 wfsNoisePSD<realT>( tPSDn,
1109 m_aosys->beta_p( m, n ) / sqrt( opticalGain ),
1110 m_aosys->Fg( localMag ),
1112 m_aosys->npix_wfs( (
size_t)0 ),
1113 m_aosys->Fbg( (
size_t)0 ),
1114 m_aosys->ron_wfs( (
size_t)0 ) );
1120 var = go_si.clVariance( tPSDp, tPSDn, gopt );
1125 gopt = go_si.optGainOpenLoop( var, tPSDpPOL, tPSDn, gmax,
true );
1127 if( m_uncorrectedOG )
1129 gopt *= opticalGain;
1133 var = go_si.clVariance( tPSDp, tPSDn, gopt );
1163 for(
int n = 0; n < lpNc; ++n )
1165 lpC( i, n ) = go_lp.a( n );
1167 if( m_uncorrectedOG )
1169 go_lp.aScale( opticalGain );
1170 go_lp.bScale( opticalGain );
1171 gopt_lp *= opticalGain;
1174 var_lp = go_lp.clVariance( tPSDp, tPSDn, gopt_lp );
1185 tPSDn.assign( tPSDn.size(), 0.0 );
1191 go_lp.a( std::vector<realT>( { 1 } ) );
1192 go_lp.b( std::vector<realT>( { 1 } ) );
1197 if( gopt > 0 && var > var0 )
1203 if( gopt_lp > 0 && var_lp > var0 )
1211 gains( mnMax + m, mnMax + n ) = gopt;
1212 gains( mnMax - m, mnMax - n ) = gopt;
1214 gains_lp( mnMax + m, mnMax + n ) = gopt_lp;
1215 gains_lp( mnMax - m, mnMax - n ) = gopt_lp;
1217 vars( mnMax + m, mnMax + n ) = var;
1218 vars( mnMax - m, mnMax - n ) = var;
1220 vars_lp( mnMax + m, mnMax + n ) = var_lp;
1221 vars_lp( mnMax - m, mnMax - n ) = var_lp;
1225 if( ( lifetimeTrials > 0 || writeXfer ) && ( uncontrolledLifetimes || inside ) )
1227 std::vector<realT> spfreq, sppsd;
1231 for(
size_t i = 0; i < tfreq.size(); ++i )
1233 ETFxn[i] = go_si.clETF( i, gopt );
1234 NTFxn[i] = go_si.clNTF( i, gopt );
1239 for(
size_t i = 0; i < tfreq.size(); ++i )
1248 std::string tfOutFile =
1261 std::string fOutFile = tfOutFile +
"freq.binv";
1266 if( lifetimeTrials > 0 )
1268 speckleAmpPSD( spfreq, sppsd, tfreq, tPSDp, ETFxn, tPSDn, NTFxn, lifetimeTrials );
1271 realT splifeT = 100.0;
1274 realT tau = pvm( error, spfreq, sppsd, splifeT ) * ( splifeT ) / spvar;
1276 speckleLifetimes( mnMax + m, mnMax + n ) = tau;
1277 speckleLifetimes( mnMax - m, mnMax - n ) = tau;
1284 for(
size_t i = 0; i < tfreq.size(); ++i )
1286 ETFxn[i] = go_lp.clETF( i, gopt_lp );
1287 NTFxn[i] = go_lp.clNTF( i, gopt_lp );
1292 for(
size_t i = 0; i < tfreq.size(); ++i )
1301 std::string tfOutFile =
1314 std::string fOutFile = tfOutFile +
"freq.binv";
1319 if( lifetimeTrials > 0 )
1321 speckleAmpPSD( spfreq, sppsd, tfreq, tPSDp, ETFxn, tPSDn, NTFxn, lifetimeTrials );
1324 realT splifeT = 100.0;
1327 realT tau = pvm( error, spfreq, sppsd, splifeT ) * ( splifeT ) / spvar;
1329 speckleLifetimes_lp( mnMax + m, mnMax + n ) = tau;
1330 speckleLifetimes_lp( mnMax - m, mnMax - n ) = tau;
1339 std::string psdOutFile =
1344 std::vector<realT> psdOut( tPSDp.size() + tPSDpHF.size() );
1351 for(
size_t i = 0; i < tfreq.size(); ++i )
1353 go_si.clTF2( ETF, NTF, i, gopt );
1354 psdOut[i] = tPSDp[i] * ETF + tPSDn[i] * NTF;
1357 for(
size_t i = 0; i < tPSDpHF.size(); ++i )
1359 psdOut[tfreq.size() + i] = tPSDpHF[i];
1364 for(
size_t i = 0; i < tfreq.size(); ++i )
1366 psdOut[i] = tPSDp[i];
1369 for(
size_t i = 0; i < tPSDpHF.size(); ++i )
1371 psdOut[tfreq.size() + i] = tPSDpHF[i];
1395 for(
size_t i = 0; i < tfreq.size(); ++i )
1397 go_lp.clTF2( ETF, NTF, i, gopt_lp );
1398 psdOut[i] = tPSDp[i] * ETF + tPSDn[i] * NTF;
1400 for(
size_t i = 0; i < tPSDpHF.size(); ++i )
1402 psdOut[tfreq.size() + i] = tPSDpHF[i];
1407 for(
size_t i = 0; i < tfreq.size(); ++i )
1409 psdOut[i] = tPSDp[i];
1412 for(
size_t i = 0; i < tPSDpHF.size(); ++i )
1414 psdOut[tfreq.size() + i] = tPSDpHF[i];
1434 Eigen::Array<
realT, -1, -1> cim;
1438 ff.
write( fn, gains );
1441 ff.
write( fn, vars );
1445 realT Ssi = exp( -1 * cim.sum() );
1446 S_si.push_back( strehl );
1450 ff.
write( fn, cim );
1452 if( lifetimeTrials > 0 )
1455 ff.
write( fn, speckleLifetimes );
1461 ff.
write( fn, gains_lp );
1464 ff.
write( fn, lpC );
1467 ff.
write( fn, vars_lp );
1472 realT Slp = strehl * exp( -1 * cim.sum() ) /
1474 S_lp.push_back( Slp );
1478 ff.
write( fn, cim );
1480 if( lifetimeTrials > 0 )
1483 ff.
write( fn, speckleLifetimes_lp );
1489 fn = dir +
"/strehl_si.txt";
1491 for(
size_t i = 0; i < mags.size(); ++i )
1493 fout << mags[i] <<
" " << S_si[i] <<
"\n";
1500 fn = dir +
"/strehl_lp.txt";
1502 for(
size_t i = 0; i < mags.size(); ++i )
1504 fout << mags[i] <<
" " << S_lp[i] <<
"\n";
1515 const std::string &subDir,
1517 const std::string &psdDir,
1518 const std::string &CvdPath,
1521 const std::string &si_or_lp,
1522 std::vector<realT> &mags,
1527 std::string dir = psdDir +
"/" + subDir;
1530 mkdir( dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH );
1533 std::string fn = dir +
'/' +
"splife_params.txt";
1536 fout <<
"#---------------------------\n";
1537 m_aosys->dumpAOSystem( fout );
1538 fout <<
"#---------------------------\n";
1539 fout <<
"# Analysis Parameters\n";
1540 fout <<
"# mnMax = " << mnMax <<
'\n';
1541 fout <<
"# mnCon = " << mnCon <<
'\n';
1542 fout <<
"# mags = ";
1543 for(
size_t i = 0; i < mags.size() - 1; ++i )
1544 fout << mags[i] <<
",";
1545 fout << mags[mags.size() - 1] <<
'\n';
1546 fout <<
"# lifetimeTrials = " << lifetimeTrials <<
'\n';
1548 fout <<
"# writePSDs = " << std::boolalpha << writePSDs <<
'\n';
1552 realT fs = 1.0 / m_aosys->tauWFS();
1553 realT tauWFS = m_aosys->tauWFS();
1554 realT deltaTau = m_aosys->deltaTau();
1557 std::vector<sigproc::fourierModeDef> fms;
1559 sigproc::makeFourierModeFreqs_Rect( fms, 2 * mnMax );
1560 size_t nModes = 0.5 * fms.size();
1561 std::cerr <<
"nModes: " << nModes <<
" (" << fms.size() <<
")\n";
1563 Eigen::Array<
realT, -1, -1> speckleLifetimes;
1564 Eigen::Array<
realT, -1, -1> speckleLifetimes_lp;
1566 speckleLifetimes.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
1567 speckleLifetimes( mnMax, mnMax ) = 0;
1569 speckleLifetimes_lp.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
1570 speckleLifetimes_lp( mnMax, mnMax ) = 0;
1576 std::vector<realT> tfreq;
1577 std::vector<realT> tPSDp;
1578 std::vector<realT> tPSDn;
1579 std::vector<complexT> tETF;
1580 std::vector<complexT> tNTF;
1582 if( getGridFreq( tfreq, psdDir ) < 0 )
1586 while( tfreq[imax] <= 0.5 * fs )
1589 if( imax > tfreq.size() - 1 )
1593 if( imax < tfreq.size() - 1 && tfreq[imax] <= 0.5 * fs * ( 1.0 + 1e-7 ) )
1596 tfreq.erase( tfreq.begin() + imax, tfreq.end() );
1599 tPSDn.resize( tfreq.size() );
1600 std::vector<std::vector<realT>> sqrtOPDPSD;
1601 sqrtOPDPSD.resize( nModes );
1603 std::vector<std::vector<realT>> opdPSD;
1604 opdPSD.resize( nModes );
1606 std::vector<realT> psd2sided;
1609 std::vector<realT> modeVar;
1610 modeVar.resize( nModes );
1616 for(
size_t i = 0; i < nModes; ++i )
1619 int m = fms[2 * i].m;
1620 int n = fms[2 * i].n;
1623 if( getGridPSD( tPSDp, psdDir, m, n ) < 0 )
1625 tPSDp.erase( tPSDp.begin() + imax, tPSDp.end() );
1632 opdPSD[i].resize( psd2sided.size() );
1633 sqrtOPDPSD[i].resize( psd2sided.size() );
1635 for(
size_t j = 0; j < psd2sided.size(); ++j )
1637 opdPSD[i][j] = psd2sided[j] * modeVar[i];
1638 sqrtOPDPSD[i][j] = sqrt( psd2sided[j] );
1642 size_t sz2Sided = psd2sided.size();
1644 std::vector<realT> freq2sided;
1645 freq2sided.resize( sz2Sided );
1648 tPSDp.resize( tfreq.size() );
1649 tETF.resize( tfreq.size() );
1650 tNTF.resize( tfreq.size() );
1652 std::vector<std::vector<realT>> sqrtNPSD;
1653 sqrtNPSD.resize( nModes );
1655 std::vector<realT> noiseVar;
1656 noiseVar.resize( nModes );
1658 std::vector<std::vector<complexT>> ETFsi;
1659 std::vector<std::vector<complexT>> ETFlp;
1660 ETFsi.resize( nModes );
1661 ETFlp.resize( nModes );
1663 std::vector<std::vector<complexT>> NTFsi;
1664 std::vector<std::vector<complexT>> NTFlp;
1665 NTFsi.resize( nModes );
1666 NTFlp.resize( nModes );
1668 std::string tfInFile;
1669 std::string etfInFile;
1670 std::string ntfInFile;
1674 ff.
read( Cvd, CvdPath );
1676 std::vector<std::complex<realT>> tPSDc, psd2sidedc;
1682 for(
size_t s = 0; s < mags.size(); ++s )
1687 for(
size_t i = 0; i < nModes; ++i )
1690 int m = fms[2 * i].m;
1691 int n = fms[2 * i].n;
1694 bool inside =
false;
1696 if( m_aosys->circularLimit() )
1698 if( m * m + n * n <= mnCon * mnCon )
1703 if( fabs( m ) <= mnCon && fabs( n ) <= mnCon )
1708 wfsNoisePSD<realT>( tPSDn,
1709 m_aosys->beta_p( m, n ),
1710 m_aosys->Fg( mags[s] ),
1712 m_aosys->npix_wfs( (
size_t)0 ),
1713 m_aosys->Fbg( (
size_t)0 ),
1714 m_aosys->ron_wfs( (
size_t)0 ) );
1720 sqrtNPSD[i].resize( psd2sided.size() );
1721 for(
size_t j = 0; j < psd2sided.size(); ++j )
1722 sqrtNPSD[i][j] = sqrt( psd2sided[j] );
1724 ETFsi[i].resize( sz2Sided );
1725 ETFlp[i].resize( sz2Sided );
1726 NTFsi[i].resize( sz2Sided );
1727 NTFlp[i].resize( sz2Sided );
1737 for(
size_t j = 0; j < psd2sidedc.size(); ++j )
1738 ETFsi[i][j] = psd2sidedc[j];
1744 for(
size_t j = 0; j < psd2sidedc.size(); ++j )
1745 NTFsi[i][j] = psd2sidedc[j];
1753 for(
size_t j = 0; j < psd2sidedc.size(); ++j )
1754 ETFlp[i][j] = psd2sidedc[j];
1760 for(
size_t j = 0; j < psd2sidedc.size(); ++j )
1761 NTFlp[i][j] = psd2sidedc[j];
1765 for(
int q = 0; q < ETFsi.size(); ++q )
1776 sz2Sided / 1., 1 / fs );
1777 std::vector<std::vector<realT>> spPSDs;
1778 spPSDs.resize( nModes );
1779 for(
size_t pp = 0; pp < spPSDs.size(); ++pp )
1781 spPSDs[pp].resize( tavgPgram.
size() );
1782 for(
size_t nn = 0; nn < spPSDs[pp].size(); ++nn )
1786 std::vector<std::vector<realT>> spPSDslp;
1787 spPSDslp.resize( nModes );
1788 for(
size_t pp = 0; pp < spPSDslp.size(); ++pp )
1790 spPSDslp[pp].resize( tavgPgram.
size() );
1791 for(
size_t nn = 0; nn < spPSDslp[pp].size(); ++nn )
1792 spPSDslp[pp][nn] = 0;
1802 math::ft::fftT<realT, std::complex<realT>, 1, 0> fftF( sqrtOPDPSD[0].size() );
1806 std::vector<std::complex<realT>> tform1( sqrtOPDPSD[0].size() );
1807 std::vector<std::complex<realT>> tform2( sqrtOPDPSD[0].size() );
1808 std::vector<std::complex<realT>> Ntform1( sqrtOPDPSD[0].size() );
1809 std::vector<std::complex<realT>> Ntform2( sqrtOPDPSD[0].size() );
1811 std::vector<std::complex<realT>> tform1lp( sqrtOPDPSD[0].size() );
1812 std::vector<std::complex<realT>> tform2lp( sqrtOPDPSD[0].size() );
1813 std::vector<std::complex<realT>> Ntform1lp( sqrtOPDPSD[0].size() );
1814 std::vector<std::complex<realT>> Ntform2lp( sqrtOPDPSD[0].size() );
1817 sigproc::psdFilter<realT, 1> pfilt;
1818 pfilt.psdSqrt( &sqrtOPDPSD[0], tfreq[1] - tfreq[0] );
1821 sigproc::psdFilter<realT, 1> nfilt;
1822 nfilt.psdSqrt( &sqrtNPSD[0], tfreq[1] - tfreq[0] );
1825 std::vector<std::vector<realT>> hts;
1826 hts.resize( 2 * nModes );
1829 std::vector<std::vector<realT>> htsCorr;
1830 htsCorr.resize( 2 * nModes );
1832 for(
size_t pp = 0; pp < hts.size(); ++pp )
1834 hts[pp].resize( sqrtOPDPSD[0].size() );
1835 htsCorr[pp].resize( sqrtOPDPSD[0].size() );
1839 std::vector<realT> N_n;
1840 N_n.resize( sz2Sided );
1842 std::vector<realT> N_nm;
1843 N_nm.resize( sz2Sided );
1850 std::vector<realT> tpgram( avgPgram.
size() );
1854 spTS.resize( 2 * mnMax + 1, 2 * mnMax + 1, tform1.size() );
1857 spTSlp.resize( 2 * mnMax + 1, 2 * mnMax + 1, tform1.size() );
1861 for(
int zz = 0; zz < lifetimeTrials; ++zz )
1864 std::complex<realT>( ( tform1.size() ), 0 );
1869 for(
size_t pp = 0; pp < nModes; ++pp )
1872 for(
size_t nn = 0; nn < hts[2 * pp].size(); ++nn )
1874 hts[2 * pp][nn] = normVar;
1878 pfilt.psdSqrt( &sqrtOPDPSD[pp], tfreq[1] - tfreq[0] );
1881 pfilt( hts[2 * pp] );
1885 fftF( tform1.data(), hts[2 * pp].data() );
1888 for(
size_t nn = 0; nn < hts[2 * pp].size(); ++nn )
1889 tform1[nn] = tform1[nn] * scale;
1891 fftB( hts[2 * pp + 1].data(), tform1.data() );
1901 for(
size_t pp = 0; pp < hts.size(); ++pp )
1903 for(
size_t nn = 0; nn < hts[0].size(); ++nn )
1905 htsCorr[pp][nn] = 0;
1908 for(
size_t qq = 0; qq <= pp; ++qq )
1910 realT cvd = Cvd( qq, pp );
1911 realT *d1 = htsCorr[pp].data();
1912 realT *d2 = hts[qq].data();
1913 for(
size_t nn = 0; nn < hts[0].size(); ++nn )
1915 d1[nn] += d2[nn] * cvd;
1933 for(
size_t pp = 0; pp < nModes; ++pp )
1939 realT norm = sqrt( modeVar[pp] / var );
1940 for(
size_t nn = 0; nn < htsCorr[2 * pp].size(); ++nn )
1941 htsCorr[2 * pp][nn] *= norm;
1944 norm = sqrt( modeVar[pp] / var );
1945 for(
size_t nn = 0; nn < htsCorr[2 * pp + 1].size(); ++nn )
1946 htsCorr[2 * pp + 1][nn] *= norm;
1949 scale = std::complex<realT>( tform1.size(), 0 );
1954 for(
size_t pp = 0; pp < nModes; ++pp )
1959 fftF( tform1.data(), htsCorr[2 * pp].data() );
1960 fftF( tform2.data(), htsCorr[2 * pp + 1].data() );
1963 for(
int nn = 0; nn < sz2Sided; ++nn )
1971 pfilt.psdSqrt( &sqrtNPSD[pp], tfreq[1] - tfreq[0] );
1972 nfilt.filter( N_n );
1973 nfilt.filter( N_nm );
1977 realT norm = sqrt( noiseVar[pp] / Nactvar );
1978 for(
size_t q = 0; q < N_n.size(); ++q )
1980 for(
size_t q = 0; q < N_nm.size(); ++q )
1984 fftF( Ntform1.data(), N_n.data() );
1985 fftF( Ntform2.data(), N_nm.data() );
1988 for(
size_t mm = 0; mm < tform1.size(); ++mm )
1991 tform1lp[mm] = tform1[mm] * ETFlp[pp][mm] / scale;
1992 tform2lp[mm] = tform2[mm] * ETFlp[pp][mm] / scale;
1994 Ntform1lp[mm] = Ntform1[mm] * NTFlp[pp][mm] / scale;
1995 Ntform2lp[mm] = Ntform2[mm] * NTFlp[pp][mm] / scale;
1997 tform1[mm] *= ETFsi[pp][mm] / scale;
1998 tform2[mm] *= ETFsi[pp][mm] / scale;
2000 Ntform1[mm] *= NTFsi[pp][mm] / scale;
2001 Ntform2[mm] *= NTFsi[pp][mm] / scale;
2005 int m = fms[2 * pp].m;
2006 int n = fms[2 * pp].n;
2009 fftB( htsCorr[2 * pp].data(), tform1.data() );
2010 fftB( htsCorr[2 * pp + 1].data(), tform2.data() );
2011 fftB( N_n.data(), Ntform1.data() );
2012 fftB( N_nm.data(), Ntform2.data() );
2014 for(
int i = 0; i < hts[2 * pp].size(); ++i )
2016 realT h1 = htsCorr[2 * pp][i] + N_n[i];
2017 realT h2 = htsCorr[2 * pp + 1][i] + N_nm[i];
2019 spTS.
image( i )( mnMax + m, mnMax + n ) = ( pow( h1, 2 ) + pow( h2, 2 ) );
2020 spTS.
image( i )( mnMax - m, mnMax - n ) = spTS.
image( i )( mnMax + m, mnMax + n );
2023 fftB( htsCorr[2 * pp].data(), tform1lp.data() );
2024 fftB( htsCorr[2 * pp + 1].data(), tform2lp.data() );
2025 fftB( N_n.data(), Ntform1lp.data() );
2026 fftB( N_nm.data(), Ntform2lp.data() );
2028 for(
int i = 0; i < hts[2 * pp].size(); ++i )
2030 realT h1 = htsCorr[2 * pp][i] + N_n[i];
2031 realT h2 = htsCorr[2 * pp + 1][i] + N_nm[i];
2033 spTSlp.
image( i )( mnMax + m, mnMax + n ) = ( pow( h1, 2 ) + pow( h2, 2 ) );
2034 spTSlp.
image( i )( mnMax - m, mnMax - n ) = spTSlp.
image( i )( mnMax + m, mnMax + n );
2041 std::vector<realT> speckAmp( spTS.planes() );
2042 std::vector<realT> speckAmplp( spTS.planes() );
2044 for(
size_t pp = 0; pp < nModes; ++pp )
2046 int m = fms[2 * pp].m;
2047 int n = fms[2 * pp].n;
2051 for(
int i = 0; i < spTS.planes(); ++i )
2053 speckAmp[i] = spTS.
image( i )( mnMax + m, mnMax + n );
2054 speckAmplp[i] = spTSlp.
image( i )( mnMax + m, mnMax + n );
2057 mnlp += speckAmplp[i];
2059 mn /= speckAmp.size();
2060 mnlp /= speckAmplp.size();
2063 for(
int i = 0; i < speckAmp.size(); ++i )
2065 for(
int i = 0; i < speckAmplp.size(); ++i )
2066 speckAmplp[i] -= mnlp;
2069 avgPgram( tpgram, speckAmp );
2070 for(
size_t nn = 0; nn < spPSDs[pp].size(); ++nn )
2071 spPSDs[pp][nn] += tpgram[nn];
2073 avgPgram( tpgram, speckAmplp );
2074 for(
size_t nn = 0; nn < spPSDslp[pp].size(); ++nn )
2075 spPSDslp[pp][nn] += tpgram[nn];
2082 std::vector<realT> spFreq( spPSDs[0].size() );
2083 for(
size_t nn = 0; nn < spFreq.size(); ++nn )
2084 spFreq[nn] = tavgPgram[nn];
2087 taus.
resize( 2 * mnMax + 1, 2 * mnMax + 1 );
2088 tauslp.resize( 2 * mnMax + 1, 2 * mnMax + 1 );
2091 std::vector<realT> clPSD;
2095 imc.resize( 2 * mnMax + 1, 2 * mnMax + 1, spPSDs[0].size() );
2096 imclp.resize( 2 * mnMax + 1, 2 * mnMax + 1, spPSDs[0].size() );
2097 clPSD.resize( sz2Sided );
2104 for(
size_t pp = 0; pp < nModes; ++pp )
2106 spPSDs[pp][0] = spPSDs[pp][1];
2107 spPSDslp[pp][0] = spPSDslp[pp][1];
2109 int m = fms[2 * pp].m;
2110 int n = fms[2 * pp].n;
2115 for(
size_t nn = 0; nn < spPSDs[pp].size(); ++nn )
2117 spPSDs[pp][nn] /= lifetimeTrials;
2120 for(
size_t nn = 0; nn < sz2Sided; ++nn )
2123 opdPSD[pp][nn] * norm( ETFsi[pp][nn] ) + pow( sqrtNPSD[pp][nn], 2 ) * norm( NTFsi[pp][nn] );
2130 for(
size_t nn = 0; nn < spPSDs[pp].size(); ++nn )
2132 spPSDs[pp][nn] *= var / pvar;
2133 imc.
image( nn )( mnMax + m, mnMax + n ) = spPSDs[pp][nn];
2134 imc.
image( nn )( mnMax - m, mnMax - n ) = spPSDs[pp][nn];
2138 for(
size_t nn = 0; nn < spPSDslp[pp].size(); ++nn )
2140 spPSDslp[pp][nn] /= lifetimeTrials;
2143 for(
size_t nn = 0; nn < sz2Sided; ++nn )
2146 opdPSD[pp][nn] * norm( ETFlp[pp][nn] ) + pow( sqrtNPSD[pp][nn], 2 ) * norm( NTFlp[pp][nn] );
2153 for(
size_t nn = 0; nn < spPSDslp[pp].size(); ++nn )
2155 spPSDslp[pp][nn] *= var / pvar;
2156 imclp.
image( nn )( mnMax + m, mnMax + n ) = spPSDslp[pp][nn];
2157 imclp.
image( nn )( mnMax - m, mnMax - n ) = spPSDslp[pp][nn];
2163 realT T = ( 1.0 / ( spFreq[1] - spFreq[0] ) ) * 10;
2165 realT tau = pvm( error, spFreq, spPSDs[pp], T ) * ( T ) / var;
2166 taus( mnMax + m, mnMax + n ) = tau;
2167 taus( mnMax - m, mnMax - n ) = tau;
2171 tau = pvm( error, spFreq, spPSDslp[pp], T ) * ( T ) / var;
2172 tauslp( mnMax + m, mnMax + n ) = tau;
2173 tauslp( mnMax - m, mnMax - n ) = tau;
2180 ff.
write( fn, taus );
2183 ff.
write( fn, tauslp );
2188 ff.
write( fn, imc );
2191 ff.
write( fn, imclp );