1 Initial Setup

1.1 Scope

AO loop control package. Includes high-performance CPU/GPU computation engine and higher level scripts.

1.2 Pre-requisites

Libraries required :

Recommended:

1.3 Installing the AdaptiveOpticsControl package

Source code is available on the AdaptiveOpticsControl git hub repository.

Download the latest tar ball (.tar.gz file), uncompress, untar and execute in the source directory (./AdaptiveOpticsControl-<version>/)

./configure

Include recommended high performance compile flags for faster execution speed:

./configure CFLAGS='-Ofast -march=native'

If you have installed CUDA and MAGMA libraries:

./configure CFLAGS='-Ofast -march=native' --enable-cuda --enable-magma

The executable is built with:

make
make install

The executable is ./AdaptiveOpticsControl-<version>/bin/AdaptiveOpticsControl

1.4 Setting up the work directory

Conventions:

The work directory is where all scripts and high level commands should be run from. You will first need to create the work directory and then load scripts from the source directory to the work directory.

First, execute from the source directory the 'syncscript -e' command to export key install scripts:

mkdir /<workdir>
cd <srcdir>/src/AOloopControl/scripts
./syncscripts -e /<workdir>

The 'syncscript' script should now be in the work directory. Execute it to copy all scripts to the work directory:

cd /<workdir>
./syncscripts

Symbolic links to the source scripts and executable are now installed in the work directory (exact links / directories may vary) :

olivier@ubuntu:/data/AOloopControl/AOloopTest$ ls -l
total 32
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 aocscripts
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 aohardsim
lrwxrwxrwx 1 olivier olivier   57 Sep 29 19:27 aolconf -> /home/olivier/src/Cfits/src/AOloopControl/scripts/aolconf
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 aolconfscripts
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 aolfuncs
lrwxrwxrwx 1 olivier olivier   70 Sep 29 19:26 AOloopControl -> /home/olivier/src/Cfits/src/AOloopControl/scripts/../../../bin/cfitsTK
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 aosetup
drwxrwxr-x 2 olivier olivier 4096 Sep 29 19:27 auxscripts
lrwxrwxrwx 1 olivier olivier   61 Sep 29 19:26 syncscripts -> /home/olivier/src/Cfits/src/AOloopControl/scripts/syncscripts

If new scripts are added in the source directory, running ./syncscripts again from the work directory will add them to the work directory.

2 Software Overview

At the low level, most operations are performed by calls to the main executable which is precompiled C code. The user interacts with a high level ASCII-based GUI, which performs calls to individual scripts or directly execute instances of the main executable.

The standard code layers are : GUI calls SCRIPT calls PRECOMPILED EXECUTABLE

2.1 High-level GUI

The top level script is aolconf. Run it with -h option for a quick help

./aolconf -h

The aolconf script starts the main GUI screen from which sub-screens can be accessed. ASCII control GUI scripts are in the aolconfscripts directory.

The scripts are listed below in the order they appear in the GUI menu. Boldface scripts corresponds to GUI screens. Supporting scripts (holding frequently used functions) are boldface italic.

Script Description
aolconf_menutop GUI: Top level menu
aolconf_funcs Misc functions
aolconf_DMfuncs DM Functions
aolconf_readconf Configuration read functions
aolconf_menuview GUI: Data view menu
aolconf_template Template (use to create additional GUI screens)
----CONFIGURATION------------------- setup configuration, links to hardware
aolconf_menuconfigureloop GUI: Configure loop menu. Called from main menu
aolconf_configureloop_funcs Functions used within the configureloop GUI screen
----CONTROL MATRIX------------------ compute control matrix
aolconf_menucontrolmatrix GUI: Control matrix menu. Called from main menu
aolconf_controlmatrix_funcs Functions used within the controlmatrix GUI screen
aolconf_menu_mkFModes Make modes
----LOOP CONTROL-------------------- control AO loop
aolconf_menucontrolloop GUI: Control loop menu. Called from main menu
aolconf_controlloop_funcs Functions used within the controlloop GUI screen
----PREDICTIVE CONTROL-------------- WFS telemetry prediction and related AO control
aolconf_menupredictivecontrol GUI:Predictive control
----TESTING------------------------- AO loop tests
aolconf_menutestmode GUI: test mode menu
aolconf_DMturb DM turbulence functions
----LOGGING------------------------- Log telemetry
aolconf_menurecord GUI: Record / log telemetry
aolconf_logfuncs Data and command logging

2.2 Supporting Scripts

Scripts are organized in directories according to their purpose

Directory Description
aolconfscripts GUI scripts (see previous section)
aolfuncs Frequently used functions
auxscripts Auxillary scripts. Essential high level scripts in this directory.
aohardsim Hardware simulation
aocscripts Custom user-provided scripts to interact with non real-time hardware

The auxscripts directory are called by aolconf to perform various tasks. To list all commands, type in the auxscripts directory :

./listcommands

For each script, the -h option will print help.

2.3 Main executable

The main precompiled executable is ./AOloopControl, which provides a command line interface (CLI) to all compiled code. Type AOloopControl -h for help. You can enter the CLI and list the available libraries (also called modules) that are linked to the CLI. You can also list the functions available within each module (m? <module.c>) and help for each function (cmd? <functionname>). Type help within the CLI for additional directions, and exit or exitCLI to exit the command line.

olivier@ubuntu:/data/AOloopControl/AOloop1$ ./AOloopControl 
type "help" for instructions
Running with openMP, max threads = 8  (defined by environment variable OMP_NUM_THREADS)
LOADED: 21 modules, 269 commands
./AOloopControl > exitCLI
Closing PID 5291 (prompt process)

2.4 Memory storage and Configuration Parameters

AOCCE adopts a common shared memory data format for all data streams. The data structure is defined in file <srcdir>/src/ImageStruct.h.

Configurations parameters are stored in directory <workdir>/conf as ASCII files. When AOCCEE is launched, it can load all required parameters and populate required shared memory streams from information contained in the <workdir>/conf directory.

3 Hardware Simulation

3.1 Overview

There are 3 methods for users to simulate hardware

3.2 METHOD 1: Provide an external simulation that adheres to AOloopControl input/output conventions

The user runs a loop that updates the wavefront sensor image when the DM input changes. Both the DM and WFS are represented as shared memory image streams. When a new DM shape is written, the DM stream semaphores are posted by the user, triggering the WFS image computation. When the WFS image is computed, its semaphores are posted.

3.3 METHOD 2: Physical hardware simulation

The AOsim simulation architecture relies on individual processes that simulate subsystems. Each process is launched by a bash script. ASCII configuration files are read by each process. Data I/O can be done with low latency using shared memory and semaphores: a process operation (for example, the wavefront sensor process computing WFS signals) is typically triggered by a semaphore contained in the shared memory wavefront stream. A low-speed file system based alternative to shared memory and semaphores is also provided.

Method 2 simulates incoming atmospheric WFs, a pyramid WFS based loop feeding a DM, a coronagraphic LOWFS and coronagraphic PSFs.

3.3.1 Running Method 2

Launch the simulator with the following steps:

  • Create a series of atmospheric wavefronts (do this only once, this step can take several hrs):

    ./aohardsim/aosimmkwf

    Stop the process when a few wavefront files have been created (approximately 10 minimum). The AO code will loop through the list of files created, so a long list is preferable to reduce the frequency at which the end-of-sequence discontinuity occurs. The current wavefront file index is displayed as the process runs; in this example, the process is working on file #2:

    Layer  0/ 7, Frame   99/ 100, File      0/100000000  [TIME =     0.0990 s]  WRITING SCIENCE WAVEFRONT ... - 
    Layer  0/ 7, Frame   99/ 100, File      1/100000000  [TIME =     0.1990 s]  WRITING SCIENCE WAVEFRONT ... - 
    Layer  1/ 7, Frame   42/ 100, File      2/100000000  [TIME =     0.2420 s]  

    Type CTRL-C to stop the process. Note that you can relaunch the script later to build additional wavefront files.

    By default, the wavefront files are stored in the work directory. You may choose to move them to another location (useful if you have multiple work directories sharing the same wavefront files). You can then create a symbolic link atmwf to an existing atmospheric wavefront simulation directory. For example:

    ln -s /data/AtmWF/wdir00/ atmwf
  • Execute master script ./aohardsim/runAOhsim

  • To stop the physical simulator: ./aohardsim/runAOhsim -k

Important notes:

  • Parameters for the simulation can be changed by editing the .conf files in the aohardsim directory

  • You may need to kill and relaunch the main script twice after changing parameters

3.3.2 Method 2 output streams

Stream Description
wf0opd Atmospheric WF OPD
wf0amp Atmospheric WF amplitude
wf1opd Wavefront OPD after correction [um] ( = wf0opd - 2 x dm05dispmap )
dm05disp DM actuators positions
dm05dispmap DM OPD map
WFSinst Instantaneous WFS intensity
pWFSint WFS intensity frame, time averaged to WFS frame rate and sampled to WFS camera pixels
aosim_foc0_amp First focal plane (before coronagraph), amplitude
aosim_foc0_pha First focal plane (before coronagraph), phase
aosim_foc1_amp First focal plane (after coronagraph), amplitude
aosim_foc1_pha First focal plane (after coronagraph), phase
aosim_foc2_amp Post-coronagraphic focal plane, amplitude
aosim_foc2_pha Post-coronagraphic focal plane, phase

3.3.3 Processes and scripts details

3.3.3.1 Process aosimmkWF

aosimmkWF reads precomputed wavefronts and formats them for the simulation parameters (pixel scale, temporal sampling).

Parameters for aosimmkWF are stored in configuration file:

File aosimmkWF.conf.default :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# ======== AO simulation : creating atmospheric wavefronts stream =================
# script relies on pre-computed physical atmospheric wavefronts


MODE             0                # 0: read pre-computed WFs, 1: empty WFs
WFDIR            ./atmwf          # atmospheric wavefronts directory

LAMBDANM         1650             # wavelength [nm]

# ============== OUTPUT TYPE (OPD unit = um) ====================
OUT0FITSFILE         0                 # 0: none, 1 if FITS file output OPD only, 2 if OPD+AMP
OUT0FITSFILENAMEOPD  wf0opd.fits       # FITS file name output (OPD)
OUT0FITSFILENAMEAMP  wf0amp.fits       # FITS file name output (AMP)
OUTPHYSTIME          aosim_phystime    # physical time [s]
OUT0STREAM           2                 # 1 if shared memory stream OPD only, 2 if OPD+AMP 
OUT0STREAMNAMEOPD    wf0opd            # output WF stream name (OPD)
OUT0STREAMNAMEAMP    wf0amp            # output WF stream name (AMP)

# ============== PROCESS TRIGGER ==================================
TRIGGERMODE           2                # 0: file, 1: semaphore from stream, 2: time interval
TRIGGERFILE           wfup.txt         # update file name (TRIGGERMODE=0,1
TRIGGERDT             0.01             # update interval (TRIGGERMODE=0,2)
TRIGGER0STREAM        WFSinst          # trigger stream
TRIGGER0SEM           5                # trigger semaphore in TRIGGERSTREAM
TRIGGER1STREAM        dm05dispmap      # trigger stream
TRIGGER1SEM           5                # trigger semaphore in TRIGGERSTREAM

# ============== PARAMETERS ======================================
DT                    0.0000625        # time interval between computed wavefronts
OPDMFACT              1.0              # OPD multiplicative factor
AMPMFACT              1.0              # AMP multiplicative factor
ARRAYSIZE             128              # output size [pix]
PIXSCALEMODE          2                # 0: adopt input WF pixel scale, 1: custom pixel scale, 2: bin
PIXSCALECUSTOM        0.1              # custom pixel size
PIXBINFACTOR          4                # bin factor
PUPDIAMM              8                # Pupil diameter [m]

# ============== POST-PROCESSING =============================
DM0MODE               1                # 0 if no DM0, 1 if OPD DMn
DM0NAME               dm05dispmap      # DM displacement map stream
OUT1FITSFILENAMEOPD   wf1opd.fits      # FITS file name output (OPD)
OUT1FITSFILENAMEAMP   wf1amp.fits      # FITS file name output (AMP)
OUT1STREAM            1                # 1 if shared memory stream OPD only, 2 if OPD+AMP 
OUT1STREAMNAMEOPD     wf1opd           # output WF stream name (OPD)
OUT1STREAMNAMEAMP     wf1amp           # output WF stream name (AMP)

3.3.3.2 Process aosimDMrun

File aosimDMrun.conf.default :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

# ============== AOsim: DM process =============================
# DM process is triggered by WF OPD, not by DM command

# ============== INPUT & TRIGGER (OPD unit = um) ===============
INMODE                   0                 # 0:stream, 1:file system (FITS)
INSTREAMNAMEDM           dm05disp          # input DM command stream
INFITSFILENAMEDM         dm05disp.fits     # input FITS file name (DM command)
INTRIGSTREAMNAME         wf1opd            # input trigger stream
INTRIGSEMCHAN            6                 # input semaphore channel (using OPD input)
INTRIGGERFILE            inwf.txt          # input trigger file

# ============== OUTPUT TYPE ===================================
OUTMODE                  0                 # 0: stream, 1: file system
OUTSTREAMNAMEDM          dm05dispmap       # output WF stream name 
OUTFITSFILENAMEDM        dm05dispmap.fits  # FITS file name output [um]
OUTTRIGGERFILE           outdm.txt         # output trigger file

# ============== GEOMETRY, TIME =============================
ARRAYSIZE                128               # array size, pix
DMRAD                    52                # DM radius on array
DMDT                     0.0003            # DM time sampling
NBTSAMPLES               100               # number of time samples
DMLAGSTART               0.0003            # time lag start
DMTIMECST                0.0001            # DM time constant

3.3.3.3 Process aosimPyrWFS

File aosimPyrWFS.conf.default :

3.3.4 AO loop control

The aolconf script is used to configure and launch the AO control loop. It can be configured with input/output from real hardware or a simulation of real hardware.

3.3.4.1 Shared memory streams

Script Description
wf0opd Wavefront OPD prior to wavefront correction [um]
wf1opd Wavefront OPD after correction [um] ( = wf0opd - 2 x dm05dispmap )
dm05disp DM actuators positions
dm05dispmap DM OPD map
WFSinst Instantaneous WFS intensity
pWFSint WFS intensity frame, time averaged to WFS frame rate and sampled to WFS camera pixels

3.3.4.2 Hardware simulation architecture

data flow

data flow

Close-loop simulation requires the following scripts to be launched to simulate the hardware, in the following order :

  • aosimDMstart: This script creates DM channels (uses dm index 5 for simulation). Shared memory arrays dm05disp00 to dm05disp11 are created, along with the total displacement dm05disp. Also creates the wf1opd shared memory stream which is needed by aosimDMrun and will be updated by runWF. wf1opd is the master clock for the whole simulation, as it triggers DM shape computation and WFS image computation.
  • aosimDMrun: Simulates physical deformable mirror (DM)
  • aosimmkWF: Creates atmospheric wavefronts
  • aosimWFS: Simulates WFS

Some key script variables need to coordinated between scripts. The following WF array size should match :

  • WFsize in script aosimDMstart
  • ARRAYSIZE in aosimmkWF.conf
  • ARRAYSIZE in aosimDMrun.conf

The main hardware loop is between aosimmkWF and aosimWFS: computation of a wavefront by aosimmkWF is triggered by completion of a WFS instantaneous image computation by aosimWFS. The configuration files are configured for this link.

3.3.4.3 DM temporal response

The DM temporal response is assumed to be such that the distance between the current position \(p\) and desired displacement \(c\) values is multiplided by coefficient \(a<1\) at each time step \(dt\). The corresponding step response is :

\(c - p((k+1) dt) = (c - p(k dt)) a\)

\(c - p(k dt) = (c-p0) a^k\)

\(p(k dt) = 1-a^k\)

The corresponding time constant is

\(a^{\frac{t0}{dt}} = 0.5\)

\(\frac{t0}{dt} ln(a) = ln(0.5)\)

\(ln(a) = ln(0.5) dt/t0\)

\(a = 0.5^{\frac{dt}{t0}}\)

3.3.5 Processes and scripts: system ouput

The output (corrected) wavefront is processed to compute ouput focal plane images, and optionally LOWFS image.

3.3.5.1 Process aosimcoroLOWFS

Computes coronagraphic image output and LOWFS image

File aosimcoroLOWFS.conf.default:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

# ============== AOsim: coro LOWFS process =============================
# LOWFS process is triggered by WF OPD

# ============== INPUT & TRIGGER (OPD unit = um) ===============
INMODE                   0                 # 0:stream, 1:file system (FITS)
INAMPSTREAMNAME          wf1amp            # input AMP stream
INOPDSTREAMNAME          wf1opd            # input OPD stream
INAMPFITSFILENAME        wf1amp.fits       # input FITS file name
INOPDFITSFILENAME        wf1opd.fits       # input FITS file name
INTRIGSTREAMNAME         wf1opd            # input trigger stream
INTRIGSEMCHAN            4                 # input semaphore channel (using OPD input)
INTRIGGERFILE            inwf.txt          # input trigger file
INPHYSTIME               aosim_phystime    # physical time

# ============== OUTPUT TYPE ===================================
OUTMODE                  0                       # 0: stream, 1: file system
OUTLOWFSARRAYSIZE        16                      # output LOWFS array size, pix
OUTLOWFSSTREAMNAME       aosim_imcamLOWFS        # output WF stream name 
OUTLOWFSFITSFILENAME     aosim_imcamLOWFS.fits   # FITS file name output [um]
OUTTRIGGERFILE           outLOWFS.txt            # output trigger file

# ============== GEOMETRY, OPTICAL DESIGN =============================
LAMBDAum                 1.65              # wavelength [um]
ARRAYSIZE                256               # array size, pix, used for internal computations
COROFPMAMP               corofpmamp        # coronagraph focal plane mask amplitude
COROFPMPHA               corofpmpha        # coronagraph focal plane mask amplitude
LYOTSTOPREFLAMP          lyotstopreflamp   # LYOT stop reflectivity map (amp)
LYOTSTOPREFLPHA          lyotstopreflpha   # LYOT stop reflectivity map (pha)
LYOTSTOPTRANSMAMP        lyotstoptransmamp # LYOT stop transmission map (amp)
LYOTSTOPTRANSMPHA        lyotstoptransmpha # LYOT stop transmission map (pha)

# ============== LOWFS =============================
LOWFSOPDMAP              lowfsopdmap       # LOWFS defocus map [um]
LOWFSCAMETIME            0.01              # LOWFS camera exposure time [s]

3.3.5.2 Ouput simulation architecture

coroLOWFS data flow

coroLOWFS data flow

3.4 METHOD 3: Linear Hardware Simulation

3.4.1 Overview

The Linear Hardware Simulation (LHS) uses a linear response matrix to compute the WFS image from the DM state. It is significantly faster than the Physical Hardware Simulation (PHS) but does not capture non-linear effects.

3.4.2 Setup

  • Create directory LHScalib:
mkdir LHScalib
  • Download response matrix and reference, place them in directory LHScalib.

  • Start GUI, loop 5, name simLHS

./aolconf -L 5 -N simLHS
  • Start DM: index 04, 50 x 50; Auto-configure: main DM (no link); STOP -> (re-)START DM comb process

  • Go to TEST MODE GUI

  • Enter linear simulation zonal response matrix and linear simulation WFS reference (zrespMlinsim and wfsref0linsim selections at top of screen).

  • Start linear simulator (lsimon selection). The simulator reacts to changes in aol5_dmdisp (= dm04disp)

4 AOloopControl setup and overview

4.1 GUI description

The script aolconf starts the main GUI, from which all setup and control can be done. The GUI consists of several main screens, as shown below.

aolconf GUI screens

aolconf GUI screens

4.2 Commands log

ALL commands are logged by the script :

./aolconfscripts/aollog

4.2.1 Automatically generated internal command log (very detailed)

aolconf uses the script aolconfscripts/aollog to log commands and status into file ./logdir/<UTDATE>/logging/<LOOPNAME>.log. A sym link to aolconf.log is created for convenience, so the log content can be viewed with:

tail -f aolconf.log

Inside the bash script, function aoconflog is used to call aolconfscripts/aollog with the proper loop name, as defined in the main aolconf script:

# internal log - logs EVERYTHING
function aoconflog {
./aolconfscripts/aollog "$LOOPNAME" "$@"
}

4.2.2 User-provided UsExternal log (less verbose)

More important commands are logged simultaneously to the internal log and an external log. The user provides the command to externally log commands. The executable should be in the path, and named aollogext. The syntax is:

./aollogext <string>

The string usually consists of the loop name followed by comments.

Inside the bash script, function aoconflogext is used to call aolconfscripts/aollog with the proper loop name, as defined in the main aolconf script:

# external log, use for less verbose log
function aoconflogext {
./aolconfscripts/aollog -e "$LOOPNAME" "$@"
}

4.2.3 Interactive user log

To start the interactive log script:

./aolconfscripts/aollog -i <LOOPNAME> NULL

Entries will be logged in the ./logdir/<UTDATE>/logging/<LOOPNAME>.log file (with sym link to aolconf.log).

It is also common practice to start a MISC log for misc comments, also to be included in the external log:

./aolconfscripts/aollog -ie MISC NULL

The corresponding log can be viewed by:

tail -f logdit/<UTDATE>/logging/MISC.log

5 Setting up the hardware interfaces

5.1 Top level script

Start aolconf with loop number and loop name (you can ommit these arguments when launching the script again):

./aolconf -L 3 -N testsim

The loop name (testsim in the above example) will both allocate a name for the loop and execute an optional custom setup script. The software package comes with a few such pre-made custom scripts for specific systems / examples. When the -N option is specified, the custom setup script ./setup/setup_<name> is ran. The script may make some of the steps described below optional.

You can check the current loop number and name settings with:

./aolconf -h

The script can also launch a pre-written CPU/OS configuration script named ./aocscripts/cpuconfig_<LOOPNAME> :

./aolconf -C

5.2 Setting the DM interface

There are four options for setting up the DM:

Before choosing an option, select if the DM to be controlled is MODAL or ZONAL. A zonal DM is one where the DM pixel locations map to physical actuator locations on the DM, allowing spatial filtering when creating control modes. With a zonal DM, each pixel of the DM map corresponds to a wavefront control mode, and spatial filtering functions are turned off.

Options [C] and [D] are MODAL options, as the DM does not represent physical spatial actuators. These options build a virtual DM which controls another DM.

5.2.1 Mode [A]: Connecting to an existing DM

  1. Set DM number (S command in Top Menu screen). You should see its x and y size in the two lines below. If not, the DM does not exist yet (see next section).

  2. autoconfigure DM: main DM (nolink) (nolink in Top Menu screen). This command automactically sets up the following symbolic links:
    • dm##disp00 is linked to aol#_dmO (flat offset channel)
    • dm##disp02 is linked to aol#_dmRM (response matrix actuation channel)
    • dm##disp03 is linked to aol#_dmC (loop dm control channel)
    • dm##disp04 is linked to aol#_dmZP0 (zero point offset 0 actuation channel)
    • dm##disp05 is linked to aol#_dmZP1 (zero point offset 1 actuation channel)
    • dm##disp06 is linked to aol#_dmZP2 (zero point offset 2 actuation channel)
    • dm##disp07 is linked to aol#_dmZP3 (zero point offset 3 actuation channel)
    • dm##disp08 is linked to aol#_dmZP4 (zero point offset 4 actuation channel)
    • dm##disp is linked to aol#_dmdisp (total dm displacement channel)
  3. load Memory (M in Top Menu screen). The dm performs the symbolic links to the DM channels.

5.2.2 Mode [B]: Creating and Connecting to a DM

  1. Set DM number (S command in Top Menu screen).

  2. Enter the desired DM size with the dmxs and dmys commands.

  • OPTIONAL: set DM delay ('setDMdelayON' and 'setDMdelayval' in Top Menu screen)
  1. Create the DM streams with the initDM command in the Top Menu. You may need to run the stopDM command first.

  2. autoconfigure DM: main DM (nolink) (nolink in Top Menu screen). This command automactically sets up the following symbolic links:
    • dm##disp00 is linked to aol#_dmO (flat offset channel)
    • dm##disp02 is linked to aol#_dmRM (response matrix actuation channel)
    • dm##disp03 is linked to aol#_dmC (loop dm control channel)
    • dm##disp04 is linked to aol#_dmZP0 (zero point offset 0 actuation channel)
    • dm##disp05 is linked to aol#_dmZP1 (zero point offset 1 actuation channel)
    • dm##disp06 is linked to aol#_dmZP2 (zero point offset 2 actuation channel)
    • dm##disp07 is linked to aol#_dmZP3 (zero point offset 3 actuation channel)
    • dm##disp08 is linked to aol#_dmZP4 (zero point offset 4 actuation channel)
    • dm##disp is linked to aol#_dmdisp (total dm displacement channel)
  3. Load Memory (M in Top Menu screen). The dm performs the symbolic links to the DM channels.

5.2.3 Mode [C]: Create a new modal DM, mapped to an existing DM using another loop's control modes

In this mode, the AO loop controls a virtual DM. The virtual actuators are correspond to modes controlling the zero point offset of another loop. In this section, I assume that loopA is the main loop (directly controls a physical DM) and that loopB is the virtual loop (this is the loop we are setting up).

  1. Select MODAL DM (DMmodeZ in Top Menu screen)

  2. Set DM number (S command in Top Menu screen). This is the DM index for loopB.

  3. Set DM x size to the number of modes of loop A to be addressed by loop B's virtual DM

  4. Set DM y size to 1

  5. Auto-configure: DM output linked to other loop (dmolink in Top Menu screen).
    1. choose loop index from which modes will be extracted (loop A index)
    2. choose offset channel in output loop This will set up several key parameters and files:
    • DM-to-DM mode will be set to 1, and associated streams:
      • dm2dmM : loopA modes controlled by loopB
      • dm2dmO : symbolic link to loopA DM channel controlled by loopB
    • CPU-based dmcomb output WFS ref will be set to 1, and associated streams:
      • dmwrefRM : loopA WFS response to modes controlled by loopB
      • dmwrefO : loopA WFS zero point offset
  • OPTIONAL: set DM delay ('setDMdelayON' and 'setDMdelayval' in Top Menu screen)
  1. Create the DM streams with the initDM command in the Top Menu.

  2. Load Memory (M in Top Menu screen). The dm performs the symbolic links to the DM channels.

5.2.4 Mode [D]: Create a new modal DM, mapped to an existing DM channel using a custom set of modes

In this mode, the AO loop controls a virtual DM. The virtual actuators correspond to modes controlling another DM stream. In this section, I assume that loop A is the main loop (directly controls a physical DM) and that loop B is the virtual (higher level) loop.

  1. Choose DM index number (S) for loop B

  2. Select number of loop A modes controlled by loop B. The number is entered as DM x size (dmxs in Top menu)

  3. Enter 1 for DM y size (dmys in Top menu)

  4. Set DM-to-DM mode to 1, and associated streams:
    • dm2dmM : loop A modes controlled by loop B
    • dm2dmO : symbolic link to loop A DM channel controlled by loop B
  5. Set CPU-based dmcomb output WFS ref to 0 (see section below more enabling this option)

  6. (Re)-create DM streams and run DMcomb process (initDM)

  7. Load Memory (M in Top Menu screen). The dm performs the symbolic links to the DM channels.

Commands to the loop B DM should now propagate to modal commands to loop A.

5.2.5 Option: WFS Zero point offset

It is possible to add a zero point offset to mode D. Every write to the loop B's modal DM then generate both a write to loop A's DM (described above) and a write to the reference of a wavefront sensor (presumably loop A's wavefront sensor). This optional feature is refered to as a CPU-based WFS zero point offset.

To enable this feature, add between steps 4 and 5:

  1. set CPU-based dmcomb output WFS ref to 1, and associated streams:
    • dmwrefRM : loopA WFS response to modes controlled by loopB
    • dmwrefO : loopA WFS zero point offset

5.2.6 Notes

You can (Re-)Start DM comb to re-initialize arrays and links ('stopDM' and 'initDM' commands in Top Menu screen). The initDM command will

  • (re-)create shared memory streams dm##disp00 to dm##disp11
  • start the dmcomb process, which adds the dm##disp## channels to create the overall dm##disp displacement
  • create poke mask and maps

5.3 Setting the camera interface

5.4 Setup script

An aosetup script may be used to perform all these operations. Inspect the content of directory aosetup to see such scripts. You may use or modify as needed. If you use a aosetup script, execute it from the working directory, and then start aolconf:

./aosetup/aosetup_<myLoop>
./aolconf

6 Calibration

6.1 Acquiring a zonal response matrix

The following files are then created:

File Archived location Description
zrespmat.fits zrespM/zrespM_${datestr}.fits zonal response matrix
wfsref0.fits wfsref0/wfsref0_${datestr}.fits WFS reference (time-averaged image)
wfsmap.fits wfsmap/wfsmap_${datestr}.fits Map of WFS elements sensitivity
dmmap.fits dmmap/dmmap_${datestr}.fits Map of DM elements sensitivity
wfsmask.fits wfsmask/wfsmask_${datestr}.fits WFS pixel mask, derived from wfsmap
dmmaskRM.fits dmmaskRM/dmmaskRM_${datestr}.fits DM actuator mask, derived from dmmap by selecting actuators with strong response
dmslaved.fits dmslaved/dmslaved_${datestr}.fits slaved DM actuators: actuators near active actuators in dmmaskRM
dmmask.fits dmmask/dmmask_${datestr}.fits DM mask: all actuators controlled (union of dmmaskRM and dmslaved)

Note that at this point, the files are NOT loaded in shared memory, but the archieved file names are stored in the staging area "conf_zrm_staged/conf_streamname.txt" for future loading.

6.2 Acquiring a modal response matrix (optional, for ZONAL DM only)

In addition to the zonal response matrix, a modal response matrix can be acquired to improve sensitivity to low-oder modes.

To do so:

The following files are then created:

File Archived location Description
LOrespmat.fits LOrespM/LOrespM_${datestr}.fits Modal response matrix
respM_LOmodes.fits LODMmodes/LODMmodes_${datestr}.fits Low-order modes
LOwfsref0.fits LOwfsref0/LOwfsref0_${datestr}.fits WFS reference measured during LO RM acquisition
LOwfsmap.fits LOwfsmap/LOwfsmap_${datestr}.fits Map of WFS elements sensitivity
LOdmmap.fits LOdmmap/LOdmmap_${datestr}.fits Map of DM elements sensitivity
LOwfsmask.fits LOwfsmask/LOwfsmask_${datestr}.fits WFS pixel mask, derived from wfsmap
LOdmmask.fits LOdmmask/LOdmmask_${datestr}.fits DM actuator mask, derived from dmmap by selecting actuators with strong response

Note that at this point, the files are NOT loaded in shared memory, but the archieved file names are stored in the staging area "conf_mrm_staged//conf_streamname.txt" for future loading.

6.4 Managing configurations

At any given time, the current configuration (including control matrices if they have been computed) can be saved using the SAVE CURRENT SYSTEM CALIBRATION command. Saving a configuration will save all files in the conf directory into a user-specified directory.

Previously saved configurations can be loaded with the LOAD SAVED SYSTEM CALIBRATION command. This will load saved files into the conf directory and load all files into shared memory.

7 Building control matrix

The following files are created:

File Archived location Description
aolN_DMmodes Mmodes/DMmodes_${datestr}.fits DM modes
aolN_respM respM/respM_${datestr}.fits WFS response to DM modes

Block-specific files:

File Archived location Description
aolN_DMmodesbb DMmodes/DMmodesbb_${datestr}.fits DM modes for block bb
aolN_respMbb respM/respMbb_${datestr}.fits WFS response to DM modes for block bb
aolN_contrMbb.fits contrM/contrMbb_${datestr}.fits Control matrix for block bb
aolN_contrMcbb.fits contrMc/contrMcbb_${datestr}.fits Collapsed control matrix for block bb
aolN_contrMcactbb.fits contrMcact/contrMcactbb_${datestr}.fits Collabsed control matrix for block bb, only active actuators

Note that at this point, the files are NOT loaded in shared memory, but the archieved file names are stored in "conf/conf_.txt" for future loading.

8 Running the loop: Choosing hardware mode (CPU/GPU)

There are multiple ways to perform the computations on CPU and/or GPUs. The main 3 parameters are:

GPU CMmode GPUall Matrix Features Description
>0 ON ON contrMcact fastest no mcoeff dark-subtracted WFS frame imWFS0 is multiplited by collapsed control matrix (only active pixels). normalization and WFS reference subtraction are wrapped in this GPU operation as subtraction of pre-computed vector output. This is the fastest mode.
>0 ON OFF contrMcact WFS reference is subtracted from imWFS0 in CPU, yielding imWFS2. imWFS2 is multiplied by control matrix (only active pixels) in GPU.
>0 OFF OFF contrM MWFS reference is subtracted from imWFS0 in CPU, yiedling imWFS2. imWFS2 is multiplied (GPU) by control matrix to yield mode values. Mode coefficients then multiplied (GPU) by modes.
0 ON - contrMcact imWFS2 is multiplied by control matrix (only active pixels) in CPU
0 OFF - contrM imWFS2 multiplied by modal control matrix

9 Auxilliary processes

A number of auxilliary processes can be running in addition to the main loop operation.

9.1 Extract WFS modes

Launches script ./auxscripts/modesextractwfs :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#! /bin/bash


# number of arguments to script
NBARGS=1

# ======================= PROCESS NAME =================================
loopnb=$(cat LOOPNUMBER 2> /dev/null)
pname="aol${loopnb}mexwfs"



function printHELP {
echo "------------------------------------------------------------------------"
echo "$(tput bold) $pname : EXTRACT MODE VALUES FROM WFS IMAGES $(tput sgr0)"
echo "------------------------------------------------------------------------"
echo "  computes mode coefficients from WFS image stream"
echo "   "
echo " $(tput bold)USAGE:$(tput sgr0)"
echo "     $0 [-hr] <GPUdevice>"
echo ""
echo " $(tput bold)OPTIONS:$(tput sgr0)"
echo "     $(tput bold)-h$(tput sgr0)          help"
echo "     $(tput bold)-r$(tput sgr0)          read from aol${loopnb}_DMmode_meas instead of computing"
echo ""
echo " $(tput bold)INPUT:$(tput sgr0)"
echo "     <GPUdevice>     GPU device"
echo ""
echo " $(tput bold)OUTPUT:$(tput sgr0)"
echo "     aol${loopnb}_modeval      Mode coefficient values"
echo ""
echo "------------------------------------------------------------------------"
}




printHELP1 ()
{
    printf "     $(tput bold)%-25s$(tput sgr0)       Extract mode values from WFS images\n" "$0" 
}




# Transform long options to short ones
singlelinehelp=0
for arg in "$@"; do
  shift
  case "$arg" in
    "--help") set -- "$@" "-h" ;;
    "--help1") 
set -- "$@" "-h" 
singlelinehelp=1;
;;
    *)        set -- "$@" "$arg"
  esac
done




# ================= OPTIONS =============================
IMPORTmodeval="0"
while getopts :hr FLAG; do
  case $FLAG in
    h)  #show help
      if [ "$singlelinehelp" -eq "0" ]; then
      printHELP
      else
      printHELP1
      fi
      exit
      ;;
    r)
    IMPORTmodeval="1"
    ;;
    \?) #unrecognized option - show help
      echo -e \\n"Option -${BOLD}$OPTARG${NORM} not allowed."
      printHELP
      ;;
  esac
done

shift $((OPTIND-1)) 








if [ "$1" = "help" ] || [ "$#" -ne $NBARGS ]; then
if [ "$#" -ne $NBARGS ]; then
    echo "$(tput setaf 1)$(tput bold) Illegal number of parameters ($NBARGS params required, $# entered) $(tput sgr0)"
fi
printHELP
        exit
fi



loopnb=$(cat LOOPNUMBER)

# this version does not use masking (yet)

if [ "$IMPORTmodeval" = "0" ]; then

./AOloopControl -n $pname << EOF
csetpmove aol${loopnb}RT1
readshmim aol${loopnb}_respM
readshmim aol${loopnb}_imWFS0
readshmim aol${loopnb}_imWFS0tot
readshmim aol${loopnb}_wfsref
readshmim aol${loopnb}_wfsmask
listim
cudaextrmodes aol${loopnb}_imWFS0 aol${loopnb}_imWFS0tot aol${loopnb}_respM aol${loopnb}_wfsref nullim aol${loopnb}_modeval $1 1 1 1 2 0 0
exitCLI
EOF

else

#echo "Linking    /tmp/aol${loopnb}_DMmode_meas.im.shm  - /tmp/aol${loopnb}_modeval.im.shm"
#rm /tmp/aol${loopnb}_modeval.im.shm
#ln -s /tmp/aol${loopnb}_DMmode_meas.im.shm /tmp/aol${loopnb}_modeval.im.shm

./AOloopControl -n $pname << EOF
csetpmove aol${loopnb}RT1
readshmim aol${loopnb}_respM
readshmim aol${loopnb}_imWFS0
readshmim aol${loopnb}_imWFS0tot
readshmim aol${loopnb}_wfsref
readshmim aol${loopnb}_modeval
readshmim aol${loopnb}_wfsmask
listim
cudaextrmodes aol${loopnb}_imWFS0 aol${loopnb}_imWFS0tot aol${loopnb}_respM aol${loopnb}_wfsref nullim aol${loopnb}_modeval $1 1 1 1 2 0 0
exitCLI
EOF

fi

Converts WFS residuals into modes.

9.2 Extract open loop modes

Launches script C function (CPU-based):

key       :    aolcompolm
module    :    AOloopControl.c
info      :    compute open loop mode values
syntax    :    <loop #>
example   :    aolcompolm 2
C call    :    long AOloopControl_ComputeOpenLoopModes(long loop)

This function is entirely modal, and assumes that the WFS modes (see section above) are computed. The key input to the function is aolN_modeval, the WFS residual mode values. The function uses this telemetry and knowledge of loop gain and mult factor to track open loop mode values.

Optionally, it also includes aolN_modeval_pC, the predictive control mode values that are added to the correction in predictive mode.

9.3 Running average of dmC

Launches script ./auxscripts/aol_dmCave 0.0005 :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/bash

NBARGS=1
pname=`echo "$0" | sed "s/\.\///g"`






function printHELP {
echo "------------------------------------------------------------------------"
echo "$(tput bold) $pname : dmC temporal averaging $(tput sgr0)"
echo "------------------------------------------------------------------------"
echo "  dmC temporal averaging"
echo "temporal averaging of zonal correction in AO system"
echo "   "
echo " $(tput bold)USAGE:$(tput sgr0)"
echo "     $0 [-h] <coeff>"
echo ""
echo " $(tput bold)OPTIONS:$(tput sgr0)"
echo "     $(tput bold)-h$(tput sgr0)          help"
echo ""
echo " $(tput bold)INPUT:$(tput sgr0)"
echo "     <coeff>   time interval"
echo ""
echo " $(tput bold)EXAMPLE:$(tput sgr0)"
echo "     $0 0.001"
echo ""
echo "------------------------------------------------------------------------"
}


printHELP1 ()
{
    printf "     $(tput bold)%-25s$(tput sgr0)       dmC temporal averaging\n" "$0" 
}




# Transform long options to short ones
singlelinehelp=0
for arg in "$@"; do
  shift
  case "$arg" in
    "--help") set -- "$@" "-h" ;;
    "--help1") 
set -- "$@" "-h" 
singlelinehelp=1;
;;
    *)        set -- "$@" "$arg"
  esac
done


while getopts :h FLAG; do
  case $FLAG in
    h)  #show help
      if [ "$singlelinehelp" -eq "0" ]; then
      printHELP
      else
      printHELP1
      fi
      exit
      ;;
    \?) #unrecognized option - show help
      echo -e \\n"Option -${BOLD}$OPTARG${NORM} not allowed."
      printHELP
      ;;
  esac
done

shift $((OPTIND-1)) 







if [ "$1" = "help" ] || [ "$#" -ne $NBARGS ]; then
if [ "$#" -ne $NBARGS ]; then
    echo "$(tput setaf 1)$(tput bold) Illegal number of parameters ($NBARGS params required, $# entered) $(tput sgr0)"
fi
printHELP
        exit
fi







loopnb=$(cat LOOPNUMBER)
pname="aol${loopnb}-$0"

./AOloopControl -n $pname << EOF
readshmim aol${loopnb}_dmC
aveACshmim aol${loopnb}_dmC $1 aol${loopnb}_dmC_ave aol${loopnb}_dmC_AC aol${loopnb}_dmC_rms
exitCLI
EOF

9.4 Compute and average wfsres

Launches script ./auxscripts/aolmkWFSres 0.0005 :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/bin/bash


NBARGS=1
pname=`echo "$0" | sed "s/\.\///g"`




function printHELP {
echo "------------------------------------------------------------------------"
echo "$(tput bold) $pname : Compute real-time WFS residual image $(tput sgr0)"
echo "------------------------------------------------------------------------"
echo "  Compute real-time residual image"
echo "   "
echo " $(tput bold)USAGE:$(tput sgr0)"
echo "     $0 [-h] <averaging coeff>"
echo ""
echo " $(tput bold)OPTIONS:$(tput sgr0)"
echo "     $(tput bold)-h$(tput sgr0)          help"
echo ""
echo " $(tput bold)INPUT:$(tput sgr0)"
echo "   <averaging coeff>    averaging coefficient"
echo ""
echo " $(tput bold)OUTPUT:$(tput sgr0)"
echo "creates streams :"
echo "        aol<loop>_wfsres"
echo "        aol<loop>_wfsres_ave"
echo "        aol<loop>_wfsres_rms"
echo ""
echo "------------------------------------------------------------------------"
}


printHELP1 ()
{
    printf "     $(tput bold)%-25s$(tput sgr0)       Compute real-time WFS residual image\n" "$0" 
}




# Transform long options to short ones
singlelinehelp=0
for arg in "$@"; do
  shift
  case "$arg" in
    "--help") set -- "$@" "-h" ;;
    "--help1") 
set -- "$@" "-h" 
singlelinehelp=1;
;;
    *)        set -- "$@" "$arg"
  esac
done


while getopts :h FLAG; do
  case $FLAG in
    h)  #show help
      if [ "$singlelinehelp" -eq "0" ]; then
      printHELP
      else
      printHELP1
      fi
      exit
      ;;
    \?) #unrecognized option - show help
      echo -e \\n"Option -${BOLD}$OPTARG${NORM} not allowed."
      printHELP
      ;;
  esac
done

shift $((OPTIND-1)) 







if [ "$1" = "help" ] || [ "$#" -ne $NBARGS ]; then
if [ "$#" -ne $NBARGS ]; then
    echo "$(tput setaf 1)$(tput bold) Illegal number of parameters ($NBARGS params required, $# entered) $(tput sgr0)"
fi
printHELP
        exit
fi









loopnb=$(cat LOOPNUMBER)

./AOloopControl -n aol${loopnb}latency << EOF
creaimshm aol${loopnb}_wfsavecoeff 1 1
setpix aol${loopnb}_wfsavecoeff $1 0 0
aolmkwfsres ${loopnb} aol${loopnb}_wfsavecoeff
exitCLI
EOF

10 Offsetting

Input channels are provided to offset the AO loop convergence point. By default, DM channels 04-11 can be dedicated to zero-point offsetting. The DM channels are sym-linked to aolN_dmZP0 - aolN_dmZP7.

WFS zero point offsetting

WFS zero point offsetting

Zero-point offsetting relies on two separate processes :

10.1 Converting DM offsets to WFS offsets (zonal, CPU mode)

CPU-based zero point offsets will compute WFS offsets from the zero point offset DM channels (04-11) and apply them to the aolN_wfszpo# stream.

Every time one of the activated DM channel changes, the corresponding wfs aolN_wfszpo# zero point offset is CPU-computed.

The process runs inside tmux session aolNzploop#

10.2 Converting DM offsets to WFS offsets (zonal, GPU mode)

A faster GPU-based zero point offset from DM to WFS is provided for each of the 8 offset channels. GPU-based and CPU-based offsetting for a single channel are mutually exclusive.

Every time one of the activated DM channel changes, the corresponding wfs aolN_wfszpo# zero point offset is GPU-computed.

The process runs inside tmux session aolNGPUzploop#

10.4 Summing and applying WFS offsets to aolN_wfsref

To activate WFS offsets to aolN_wfsref, the user needs to :

Command aolzpwfscloop (C function AOloopControl_WFSzeropoint_sum_update_loop) launches a loop that monitors shared memory streams aolN_wfszpo0 to aolN_wfszpo7, and updates the WFS reference when one of these has changed.

The loop is running inside tmux session aolNwfszpo, and is launched when the loop is closed (Floopon) if the loop zero point offset flag is toggled on (LPzpo)

10.5 WFS average offset

Measures average WFS residual with script :

./auxscripts/aolmkWFSres 0.0005

Running average is in stresm aol_wfsres_ave

11 Controlling offsets from another loop

11.1 Running the loop

The next steps are similar to the ones previously described, with the following important differences:

12 Predictive control (experimental)

12.1 Overview

Predictive control is implemented in two processes:

The predictive filter is modal, and adopts the same modes as the main control loop.

12.2 Scripts

File Description
aolARPF find auto-regressive predictive filter
aolARPFblock AO find optimal AR linear predictive filter

12.3 Data flow

Predictive control is set up by blocks of modes. A block is configured through the aolconf predictive control sub-panel, which writes to configuration files conf/conf_PFblock_XXX.txt, where XXX is the block number (000, 001, 002 etc...). Configuration files specify the modes within each block (index min to index max), the predictive filter order, time lag and and averaging gain.

For each block, there are 3 main processes involved in running the predictive control:

All 3 processes work in a chain, and can be turned on/off from the GUI.

13 APPENDIX A: SHARED MEMORY STREAMS

13.1 Linking to existing stream

Creates a sym link from an existing stream to a new stream. This is frequently used to connect to hardware (for example pointing aol8_wfsim to the WFS camera stream).

Within AOCCE, setting (new) stream aol#_<deststream> to point to <srcstream> involves:

The corresponding commands, to point aol8_wfsim to imcam, would be:

echo "imcam" > conf/streamlink_wfsim.name.txt
rm /tmp/aol8_wfsim.im.shm
ln -s /tmp/imcam.im.shm /tmp/aol8_wfsim.im.shm

This is implemented in script :

./aolfuncs/aolfunc_StreamLink

13.2 Loading images from FITS to shared memory stream

13.2.1 Overview

Loading FITS file into a new or existing stream.

The recommended command to load a FITS image to shared memory in AOCCE is for example:

echo "./wfsref0/wfsref0_today.fits" > ./conf/conf_wfsref0.name.txt
Fits2shm -c -p aol${LOOPNUMBER}_ wfsref0

This command will skip loading if the stream does not need to be updated from the last load command. Add the -f option to force loading.

13.2.2 Detailed description

File name can be :

  • option A: read from ./conf/shmim_<stream>.name.txt
  • option B: specfied and written to ./conf/shmim_<stream>.name.txt

Command for option A:

Fits2shm <FITS file> <stream>

Command for option B:

Fits2shm -c <stream>

A prefix is usually added to the shared memory file with the -p option:

Fits2shm -c -p aol8_ <stream>

The -r removes/clears any previous instance of the stream and associated files: it is a stronger option than -f.

Fits2shm is located in the src/scripts/ directory of the AOCCE source code.

For both options, FITS files and shared memory files are inspected to assess need to load the image. If repetitive load requests are issued on the same file and shared memory, the script may decide that no action is required as the shared memory is already up-to-date.

Local directory ./loadedSM/ is used to keep track of streams loaded from FITS files.

Important files:

File Description
./loadedSM/<stream>.FITSinfo FITS file name, size, time of last modification
./loadedSM/<stream>.FITSinfo.old previous version of above file - to be used for comparison
./loadedSM/<stream>.FITSsame File exists if the two FITS files are identical
./loadedSM/<stream>.FITSchanged File exists if the two FITS files are different
./loadedSM/<stream>.SMinfo stream file name, size, time of last modfification
./loadedSM/<stream>.SMinfo.old previous version of above file - to be used for comparison
./loadedSM/<stream>.SMsame File exists if the two SM files are identical
./loadedSM/<stream>.SMchanged File exists if the two SM files are different
./loadedSM/<stream>.imsize Image size - updated upon SM load
./loadedSM/<stream>.new File exists if last load request updated or created stream
./loadedSM/<stream>.kept File exists if last load request kept stream unchanged
./loadedSM/<stream>.missing File exists if last load request created new stream (stream was missing)
./conf/shmim_<stream>.name.txt FITS file name for stream
./conf/shmim_<stream>.imsize.txt Stream size
./conf/shmim_<stream>.fits (symbolic link to) FITS file
./tmp/<prefix><stream>.im.shm File-mapped shared memory

The logic behind Fits2shm is as follows:

  • Assume LOAD=0 (do not load FITS file in memory)
  • Check if FITS file has changed. If yes, set LOAD=1
  • Check if SM file has changed. If yes, set LOAD=1
  • Check if SM file exists, if not:
    • set LOAD=1
    • create <stream>.missing file (otherwise, rm <stream>.missing file)
  • Check if FORCE option, if yes, set LOAD=1
  • If LOAD=1:
    • load file to shared memory

When loading :

  • OPTION A only: update ./conf/shmim_<stream>_name.txt to the FITS file name
  • update ./loadedSM/<stream>.FITSinfo file
  • update ./loadedSM/<stream>.SMinfo file
  • create ./loadedSM/<stream>.kept OR ./loadedSM/<stream>.new file, remove the other one
  • create ./loadedSM/<stream>.missing file if the SM file did not exist, otherwise remove ./loadedSM/<stream>.missing
  • copy ./loadedSM/<stream>.imsize file to ./conf/shmim_<stream>.imsize.txt
  • load FITS file to ./tmp/<prefix><stream>.im.shm
  • create sym link ./conf/shmim_<stream>.fits pointing to FITS file

14 REFERENCE: CONF DIRECTORY

14.1 Overview

File Type Description
conf_XXXX.txt Information about the configuration (name etc...)
param_XXXXX.txt AOCCE parameter
streamlink_XXXX.txt shared memory link name for AOCCE stream XXXX
instconf_XXXXX.txt Instrument-specific configuration (filter wheels, stages.. )

14.2 Parameters

14.2.1 Overall and misc

File Description
param_CPUset_mode.txt 1 if using CPUset
param_wfslambdanm.txt WFS wavelength [nm]

14.2.2 Linear Hardware Simulator

File Description
param_linsimDelay.txt Linear Hardware Simulator (LHS) hardware latency [us]
param_linsimdt.txt Linear Hardware Simulator (LHS) loop interval [us]
param_GPUlinsim.txt Linear Hardware Simulator (LHS) GPU index

14.2.3 DM

File Description
param_DMindex.txt DM index (00, 01, 02 ... )
param_DMMODE.txt ZONAL (default) or MODAL
param_DMxsize.txt DM x size
param_DMysize.txt DM y size
param_DM2DM_mode.txt DM-to-DM more. 1 if this DM drives another DM, 0 otherwise
param_DMwfsref_mode.txt 1 for CPU-based dmcomb DM ouput applied as WFS offset
param_DMvolt_mode.txt 1 if DM voltages applied (requires stream "dmvolt")
param_DMcombave_mode.txt DM averaging mode (default = 0)
param_DMdelayON.txt 1 if DM delay introduced
param_DMdelayus.txt DM delay value [us]

14.2.4 Timing

File Description
param_loopfrequ.txt WFS camera frequency [Hz]
param_hardwlatency.txt Hardware latency [s]
param_hardwlatency_frame.txt Hardware latency [frame]
param_complatency.txt Computation latency [s]
param_complatency_frame.txt Computation latency [frame]
param_wfsmextrlatency.txt Modal reconstruction latency [s]
param_wfsmextrlatency_frame.txt Modal reconstruction latency [frame]
param_nblatm.txt Number of cycles in latency measurement

14.2.5 Response Matrix acquisition

File Description
param_ACzrmtime.txt Max running time for zonal RM acquisition [s]
param_ACzrmNBcycle.txt Max number of cycles for zonal RM acquition
param_ACmrmtime.txt Max running time for monal RM acquisition [s]
param_ACmrmNBcycle.txt Max number of cycles for modal RM acquition
param_RMdelayfr.txt RM acquisition delay [frame]
param_RMfrave.txt RM acquisition number of frames averaged per poke
param_RMexft.txt RM acquisition number of frames excluded during poke transition
param_RMamplum.txt RM acquisition amplitude [um]
param_delayRM1us.txt RM acquisition delay 1 [s]
param_RMpokeMode.txt RM poking mode. 0=zonal, 1=Hadamard.
param_RMMamplum.txt RM Low Order Modal acquisition amplitude [um]
param_RMMcpa.txt RM Low Order Modal max CPA
param_WFSnorm.txt Normalize WFS frames
param_DMmaskRMp0.txt
param_DMmaskRMc0.txt
param_DMmaskRMp1.txt
param_DMmaskRMc1.txt
param_WFSmaskRMp0.txt
param_WFSmaskRMc0.txt
param_WFSmaskRMp1.txt
param_WFSmaskRMc1.txt
param_WFSmaskSNRr.txt
param_RMCalibReuseMasks.txt 1 if calibration masks reused (0 if re-computed)
param_.txt

14.2.6 Modess and Control Matrix computation

File Description
param_MASKS_LOCK.txt 1 if WFS and DM masks are locked
param_NBmodeblocks.txt Number of mode blocks (default=1)

14.2.7 Loop Control

File Description
param_DMprimWriteON.txt Primary Write ON/OFF (0 or 1)
param_CMMODE.txt Combined Matrix (0 or 1)
param_GPU.txt
param_GPUmodesextrwfs.txt WFS mode coefficients extraction: GPU device
param_GPUdmfwb.txt DM modal write (post-filtering): GPU device
param_GPUzpoffsetZ.txt Zonal WFS zero point offset loop: GPU device
param_GPUzpoffsetM.txt Modal WFS zero point offset loop: GPU device
param_LOOPPROCESS_EXTRWFSMODES.txt
param_LOOPPROCESS_EXTROLMODES.txt
param_LOOPPROCESS_DMFILTWB.txt
param_LOOPPROCESS_ZPO.txt
param_LOOPPROCESS_DMCAVE.txt
param_LOOPPROCESS_WFSRESAVE.txt
param_AUTOTUNELIMITS_ON.txt Autotuning ON/OFF (ON or OFF)
param_AUTOTUNELIMITmcoeff.txt Autotuning limits
param_AUTOTUNELIMITdelta.txt Autotuning limits
param_AUTOTUNEGAINS_ON.txt Autotuning gain (ON or OFF)
param_ARPFon.txt Auto-regressive predictive filter (ON or OFF)
param_ARPFg.txt Auto-regressive predictive filter gain
param_loopgain.txt
param_loopmmultcoeff.txt
param_loopmaxlim.txt Limit of DM actuators (direct write only)

14.4 Shared memory FITS file initializations to streams

File shmim_<stream>.name.txt contain the FITS file names that are loaded into shared memory streams aol<loop>_<stream>.

File Description
shmim_wfsdark.name.txt WFS dark
shmim_wfsmap.name.txt WFS response map
shmim_wfsmask.name.txt WFS mask
shmim_dmmap.name.txt
shmim_dmmaskRM.name.txt
shmim_dmslaved.name.txt
shmim_dmmask.name.txt
shmim_wfsref0.name.txt
shmim_zrespM.name.txt
shmim_LODMmodes.name.txt
shmim_LOrespM.name.txt
shmim_DModes.name.txt
shmim_respM.name.txt
shmim_contrM.name.txt
shmim_DMmodesXX.name.txt
shmim_respMXX.name.txt
shmim_contrMXX.name.txt
shmim_contrMcXX.name.txt
shmim_contrMcactXX_00.name.txt

14.5 FITS files

File Description
RMpokeCubeZ.fits.gz Simple Zonal poke mode
RM_DMmask.fits.gz mask for creating RM Hadamard pokes
Hpoke.fits.gz Hadamard poke modes
Hmat.fits.gz Hadamard-zonal transformation matrix
Hpixindex.fits.gz Hadamard DM pixel index
RMmat.fits.gz Current poke transformation matrix (optional)
RMpixindex.fits.gz Current DM pixel index
RMpokeCube.fits.gz Current poke modes

15 REFERENCE: Content of ./status directory

The status directories contrains the current state of the AOCCE processes.

File Description
stat_DMcombON.txt " ON" if DMcomb is running, "OFF" otherwise
stat_lsimON.txt " ON" if linear hardware simulator is running, "OFF" otherwise

16 REFERENCE, ADDITIONAL PAGES