|
SHANEAO Install Control Matrix
Standard Procedure:
To install the default Control Matrix (i.e. controlMatrix_16x.fits), use the following 3 commands:
>>> cm = fits.readfits(os.path.join(paramsDir, "controlMatrix_16x.fits"), raiseError=True)
>>> shaneao.self.load_ngs_matrix(cm)
>>> shaneao.self.wfs_switch = 1.
To install an alternative Control Matrix (e.g. controlMatrix_16x.incgain.RUDY.fits), use the following 3 commands:
>>> cm = fits.readfits(os.path.join(paramsDir, "controlMatrix_16x.incgain.RUDY.fits"), raiseError=True)
>>> shaneao.self.load_ngs_matrix(cm)
>>> shaneao.self.wfs_switch = 1.
|