ID |
Date |
Author |
Type |
Category |
Subject |
138
|
Mon Apr 18 15:03:49 2011 |
Aidan | Computing | DAQ | Athena DAC channels hooked up to BNC patch panel |
I added the four Athena DAC channels to the second BNC patch panel in the rack. At the moment there are only two EPICS channels in the database:
C4:TCS-ATHENA_DAC0
C4:TCS-ATHENA_DAC1
|
139
|
Mon Apr 18 15:06:53 2011 |
Aidan | Things to Buy | Hartmann sensor | Ordered 2" optics from Newport |
Given that the HWS requires several 2" optics to handle the big beam size, I've ordered the following items from Newport:
- 2x 2" 50/50 beam splitter: 20B20BS.2
- 6x 2" NIR mirrors: 5122
- 8x 2" Ultima mirror mounts: U200-A2K
|
140
|
Fri Apr 22 19:51:37 2011 |
Aidan | Computing | EPICS | pyepics installed on princess_sparkle |
I installed the pyepics package on princess_sparkle since this is much easier under Ubuntu than under CentOS.
sudo apt-get install python-dateutil python-setuptools
- make sure that LD_LIBRARY_PATH points to EPICS libraries by echo $LD_LIBRARY_PATH
- sudo ldconfig
- sudo easy_install -U pyepics
Then I started the following python script ~/start_test_channels.py in the background on princess_sparkle. The EPICS channels are actually in an IOC on tcs_daq . They are all acquired by the frame builder at 16Hz.
|
141
|
Sun Apr 24 18:31:18 2011 |
Aidan | Computing | Network architecture | Added hosts and network drives on TCS machines |
Under edit ...
I added the names of the network machines to the /etc/hosts file on princess_sparkle, tcs_daq and tcs_ws.
I also added the /cvs drive on fb1 to the /etc/fstab file on princess_sparkle so that can be accessed from those machines. |
143
|
Thu Apr 28 22:48:47 2011 |
Aidan | Lab Infrastructure | Electronics | BNC Cables from HWS table to rack |
I labelled and strung 8 of the 16 custom 40' BNC cables from L-Com between the HWS table and the BNC feed-through on the rack. Each cable is labelled HWS TABLE CHxx where 01<= xx <= 08. I'm going to leave the other 8 until we have room in the BNC feedthrough on the rack. |
145
|
Wed May 11 09:07:03 2011 |
Aidan | Computing | Hartmann sensor | Changed ownership of /opt/EDTpdv |
I changed the ownership of /opt/EDTpdv to controls with the command:
controls@princess_sparkle:/opt/EDTpdv$ sudo chown controls EDTpdv/
|
146
|
Wed May 11 18:38:47 2011 |
Aidan | Computing | Hartmann sensor | test_HS binary |
From Won: (the zip file is also on the SVN /users/won/compiled_code/test_HS.zip )
Attached is test_HS.zip file, that contains
- test_HS.prj: project file created by Matlab Compiler. This file is not
required to run the application but I included it just in case someone's
insterested.
- test_HS folder contains two subfolders src and distrib, each of which
contains the standalone application test_HS.
Usage: test_HS <path to the image folder>, for example
test_HS ~/test_images/
Make sure you create the folder prior to running the application, and the
folder name ends with "/". Running test_HS will take and save 10 images
using the camera (provided the frame grabber applications are installed in
/opt/EDTpdv), averages those 10 images and find centroids, then plots the
result.
As I put in the eLOG, one needs MCRInstaller.bin and run it to install MCR
(probably 2008b 64bit version to test my files). If there are difficulties
getting MCRInstaller, let me know.
Won
<test_HS.zip>
|
147
|
Wed May 11 18:44:54 2011 |
Aidan | Computing | Hartmann sensor | Matlab Compiler and Matlab Compiler Runtime |
Installing MCR
I located the MCRInstaller on our distribution of MATLAB on the Ubuntu machine (/MATLAB_R2009b/toolbox/compiler/deploy/glnxa64/MCRInstaller.bin ). I ran the installer, as root ,and followed the default options to install it. Next I updated the .bashrc file to include the necessary pointers to various libraries:
export LD_LIBRARY_PATH=/home/controls/base-3-14-11/lib/linux-x86_64:/MATLAB_R2009b/runtime/glnxa64:/MATLAB_R2009b/bin/glnxa64
export MCR_ROOT=/opt/MATLAB/MATLAB_Compiler_Runtime
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MCR_ROOT/v79/runtime/glnxa64:$MCR_ROOT/sys/os/glnxa64:$MCR_ROOT/v79/sys/java/jre/glnxa64/jre1.6.0/lib/amd64/native_threads:$MCR_ROOT/v79/sys/java/jre/glnxa64/jre1.6.0/lib/amd64/server:$MCR_
ROOT/v79/sys/java/jre/glnxa64/jre1.6.0/lib/amd64
export XAPPLRESDIR=$MCR_ROOT/v79/X11/app-defaults
Running test_HS binary from Adelaide on Ubuntu distribution
I've downloaded the test_HS binary from the SVN and added the ~/test_images/ directory as recommended by Won. I then ran the code by entering ./test_HS ~/test_images/
The code ran successfully through the serial_cmd access and the image acquisition process and only crashed when it tried to access the variable mes_message. This indicates a run-time error, not a compilation error. If you examine lines 751 and 752 of HS_Camera.m you can see the typo (mes_meesage vs mes_message ) in the code that is the source of the error:
751 |
mes_meesage = ['Intensity too high: ',fobj.name]; |
752 |
cam.inform_messenger('ImageNotValid',mes_message); |
Here's the output:
controls@princess_sparkle :~/Hartmann_Sensor_SVN/users/won/compiled_code/test_HS/test_HS/distrib$ ./test_HS ~/test_images/
The camera is accessible.
G E N E R A L C A M E R A S E T T I N G S:
Camera Model No.: DS-22-01M60-11E
Camera Serial No.: 04437062
Sensor Serial No.: 0411218
Tap 1 Gain: 0
Tap 2 Gain: 0
Firmware Design Rev.: 03-81-00070-03 Sep 30 2004
DSP Design Rev.: 17.3
Pretrigger: 0
Video Mode: Normal Operating Mode
Data Mode: 12 bit
Binning Mode: 1x1
Gain Mode: 1x Output Gain Mode
Output Configuration: 2 Tap
Exposure Control: enabled
Exposure Mode: 2
SYNC Frequency: 8 Hz
Exposure Time: 123646.66 uSec
OK>
executing /opt/EDTpdv/take -s 1 -l 10 -f /home/controls/test_images/test ...
??? Undefined function or variable "mes_message".
Error in ==> HS_Camera>HS_Camera.read_raw at 752
Error in ==> HS_Camera>HS_Camera.read_from_folder at 668
Error in ==> HS_Camera>HS_Camera.read_from_fg at 721
Error in ==> HS_Camera>HS_Camera.read_images at 590
Error in ==> test_HS at 9
MATLAB:UndefinedFunction
Quote: |
Build an application that uses HS classes
I wrote a simple script test_HS.m that takes and saves 10 images using the camera, averages the images and finds centroids. Thus the script requires the class files HS_Base, HS_Camera, HS_Image, and HS_Centroids.
I added those four class files by right-clicking Other Files (found below Main function) then choosing Add File, then clicked the build icon.
|
|
148
|
Tue May 17 16:08:02 2011 |
Aidan | Computing | Hartmann sensor | Write speed of the frame grabber to file |
The attached file shows the output of the command. The maximum average frame rate is 57.2Hz when the nominal frame rate was 58Hz:
/opt/EDTpdv/take -f max_frame_rate_image -l 120 -N 4 -d > max_frame_rate_data.txt
|
149
|
Wed May 18 18:52:12 2011 |
Aidan | Computing | Hartmann sensor | Test of position modulation algorithm |
I measured the prism and displacement of the Gaussian beam on the Hartmann sensor. The beam pointing was modulated at 10mHz using a galvo mirror as illustrated in Attachment 1. The galvo was around 680mm from the Hartmann sensor. The amplitude of the prism modulation was approximately 1E-5 radians. The displacement of the beam was measured using a new algorithm that tries to fit a parabola to the logarithm of the intensity of each Hartmann spot. The amplitude of the displacement modulation was measured at around 42 microns: corresponding to around 6E-5 radians (=42um/680mm).
To resolve the discrepancy between the prism and displacement measurements, I removed the Hartmann plate to simply get a Gaussian beam on the CCD (bottom right image in Figures 2 & 3 - the beam is slightly clipped and there is a ghost beam in the center - I'm not yet certain where this is coming from). I measured the Gaussian beam displacement directly by fitting a Gaussian to the mean horizontal cross-section of the intensity distribution (top right plot in Figures 2 & 3). Using this technique the measured displacement on the CCD had an amplitude of around 0.7 +/- 0.05 pixels = 8.4 +/- 0.6 microns, corresponding to a prism of 12.5E-6 radians (seen in top left plot in Figures 2 and 3). This indicates that there is an error in the Gaussian fitting algorithm using the Hartmann sensor data.
The second plot simply shows the position modulation of the beam as I increased the amplitude of the signal going to the galvo.
Voltage (Vpp) |
Displacement on CCD (pixels) |
0.01 |
0.325 |
0.012 |
0.400 |
0.014 |
0.487 |
0.015 |
0.541 |
0.016 |
0.576 |
0.019 |
0.708 |
0.02 |
0.763 |
0.023 |
0.887 |
0.028 |
1.194 |
0.034 |
1.803 |
0.041 |
3.053 |
0.049 |
7.107 |
|
150
|
Thu May 26 11:56:46 2011 |
Aidan | Electronics | Laser | Green Laser Pointer beam profile |
This measurement was made with the Thorlabs DCC1545M-GL camera with an RG850 3mm long-pass filter over the CCD.
The beam radius (w) is 191 pixels, where the beam intensity = exp[-2 (x/w)^2 ]
The pixel size is 5.2um. Hence the beam size is 993.2um, which is basically near enough to 1mm radius.
|
151
|
Mon May 30 10:53:00 2011 |
Aidan | Laser | Hartmann sensor | Defocus vs time |
I've had the output from a fiber projected about 400mm onto the Hartmann sensor for around 5 days now. (The divergence angle from the fiber is around 86 mrad).
I played around with the temperature of the lab to induce some defocus changes in the Hartmann sensor. The system is mostly linear, but there are relatively frequent jumps in the defocus of the order of 1E-4 m^-1. This may be due to a number of things - the Hartmann plate may be moving, the fiber holder may be shifting back and forth, there may be some issue with the source wavelength shifting.
- A change in defocus, dS, of around 1E-4 m^-1 from a point source at 400mm from the Hartmann plate (dS/dx = -1/x^2), corresponds to a change in the end position of the fiber of around 16 microns. Seems a little big ... unless it's not secured properly ...
- Also the defocus vs temperature slope is different from what James measured last year. There is an additional -4E-5 m^-1 K^-1 due to the expansion of the stainless steel table moving the point source further or closer to the Hartmann plate. That leaves about -3E-4 m^-1 K^-1 for the Hartmann sensor. This is roughly twice what James measured last year.
Sun 30th May 2011 - 11:40AM - the z-axis control on the NewFocus 9091 fiber coupling mount was not tightened. I tightened that to secure the control. |
152
|
Mon May 30 20:11:27 2011 |
Aidan | Laser | Hartmann sensor | Hartmann sensor lever arm calibration |
I ran through the procedure to calibrate the lever arm of the Hartmann sensor. The beam from a 632.8nm HeNe laser was expanded to approximately 12mm diameter and injected into a Michelson interferometer. The Hartmann sensor was placed at the output port of the Michelson.
- I tilted one of the mirrors of the interferometer to induce a prism between the two beams at the output. This created about 135 vertical fringes on the CCD.
- With the Hartmann plate removed, I recorded the interference pattern and took its 2D FFT. There was a peak in the Fourier transform about 134 pixels from the DC level.
- This next part is questionable ... I centroided the frequencies around the peak in the FFT to try to determine the spatial frequency of the fringes to better than the bandwidth of 1/1024 pixels^-1 (yes, they're strange units). This is, probably acceptable at improving the accuracy of the frequency measurement if it is known that the signal is a generated by a pure sine wave in the spatial domain - this is not an unreasonable assumption for the output of an interferometer. Anyway, the peak fluctuated around 133.9 units from DC by around +/- 0.1 units.
- The prism between the two beams is the measured spatial frequency (measured as 133.9 oscillations across the CCD) multiplied by the wavelength and divided by the width of the CCD (= 1024 x 12um). In other words, the prism is the ratio of the wavefront change across the CCD divided by the diameter of the CCD (= 6.895 +/- 0.005 mrad)
- Next, I inserted the Hartmann plate, blocked one of the beams and recorded the spot pattern. I then blocked the other beam and unblocked the first and recorded another spot pattern.
- The mean displacement between the spot patterns was calculated. Due to a fairly noisy intensity distribution (the 2" mirrors were AR coated for 700-1000nm and hence there were some stray beams), the mean displacement was relatively noisy - about 5.60 pixels with a standard deviation of around 0.3 pixels and a standard error of around 0.01 pixels ( = 67.2 um)
- The lever arm is equal to the mean displacement of the spots divided by the prism. In this case, 9.75 +/- 0.02 mm
- I removed the Hartmann plate and confirmed that the FFT of the fringes from the IFO still had a peak at 133.9 +/- 0.1 units. It did.
|
153
|
Thu Sep 1 15:51:38 2011 |
Aidan | Laser | Ordering | Access Lasy50 50W laser arrived. |
The 50W Access Laser is now in the lab. We need to wire up the interlock to the laser, plumb the chiller lines to the power supply and to the laser head and also wire up all the electrical and electronics cables. Additionally, we will need to plumb the flow meter and attach a circuit to it that triggers the interlock if the flow falls too low.
|
154
|
Fri Sep 2 14:41:48 2011 |
Aidan | Computing | Hartmann sensor | QFLD-950-3S long term test finished |
I ran a test of the HWS with the QFLD-950-3S for 5 days. The test was terminated as we need to disconnect all the cabling and tidy up all the computers in the lab. |
155
|
Fri Sep 2 21:41:01 2011 |
Aidan | Electronics | Hartmann sensor | Restarting long term test of QFLD-950-3S |
9:40PM PDT - I've just restarted the long term measurement of the Hartmann sensor noise with the QFLD-950-3S.
|
182
|
Thu Dec 15 14:02:01 2016 |
Aidan | Computing | Network architecture | Correct network settings for Ubuntu 14 in /etc/network/interfaces |
These settings work to get a computer onto the TCS/ATF network. |
183
|
Fri Dec 16 10:41:33 2016 |
Aidan | Computing | Network architecture | Correct network settings for Ubuntu 14 in /etc/network/interfaces |
Spelt out in a searchable fashion:
auto <portname>
iface <portname> inet static
address 10.0.1.x
netmask 255.255.255.0
network 10.0.1.0
broadcast 10.0.1.255
gateway 10.0.1.1
dns-nameservers 10.0.1.1 131.215.139.100 8.8.8.8
Quote: |
These settings work to get a computer onto the TCS/ATF network.
|
|
184
|
Wed Apr 26 15:29:25 2017 |
Aidan | Electronics | Hartmann sensor | Long term test of fiber launcher |
I've started a long-term measurement of the HWS fiber-launcher. I'm interested in seeing how stable the output is. The HWS is currently running in the following configuration:
- SLED: QFLD-635-1S (635nm, 1mW) - current driver set to 38.02mA, thermistor set point = 10.778kOhm
- SLED coupled to patch cable
- Patch cable coupled to Newport fiber launcher FPR1-C1A which contains a FPH-CA4 fiber optic chuck (FC/APC connector). All grub screws are tighten on this (two for holding chuck, one for roll motion, one for X translation lock and one for Y translation lock)
- Output of fiber hits a 100m focal length lens (SPX043AR.16 BBAR 0.65 - 1.0um) placed approximately 100mm from the fiber output
- Output of lens is projected approximately 125mm onto the HWS where it is centered on the HWS plate
The HWS is currently running at 57Hz. The HWS code is running on HWS (10.0.1.167). It is the same as the site code with some modifications to determine information about the Gaussian beam envelope. The following data is written to file on the HWS machine in files containing 10,000 cycles. Each cycle (or row) the following data is recorded:
- GPS TIME
- PRISM_X
- PRISM_Y
- SPHERICAL_POWER
- CYLINDRICAL_POWER
- Envelope peak intensity
- Envelope X centroid
- Envelope Y centroid
- Envelope X width
- Envelope Y width
These are saved to files on the HWS machine: ~/framearchive/C4/HWSlongterm/<GPSTIME>_CIT_HWS.txt |
185
|
Wed May 24 09:58:17 2017 |
Aidan | Electronics | Electronics | Temperature sensor batteries swapped in TCS Lab |
I noticed that the TCS lab temperature sensor batteries died. Apparently they died two days ago. I swapped in some new batteries this morning.
|
186
|
Mon Jun 5 16:41:59 2017 |
Aidan | Laser | Hartmann sensor | HWS long term measurement results. |
The data from the long-term measurement of the HWS is presented here. The beam envelope moves by, at most, about 0.3 pixels, or around 3.6 microns. The fiber-launcher is about 5" away from the HWS. Therefore, the motion corresponds to around 30 micro-radians (if it is a tilt). The beam displacement is around 4 microns.
The optical properties change very little over the full 38 days (about 2 micro-radians for tilt and around 2 micro-diopters for spherical power).
The glitches are from when the SLED drivers were turned off temporarily for other use (with the 2004nm laser). |
191
|
Fri Oct 13 15:52:41 2017 |
Aidan | Lab Infrastructure | General | Broadband mirror BB2-E03 reflectivity at 532nm |
I measured the reflectivity of a possible HWS replacement mirror at 532nm. Thorlabs BB2-EO3
Incident power = 1.28mW
Reflected power = 0.73mW
R = 56% at 45 degrees AOI.
|
197
|
Thu Oct 26 10:21:28 2017 |
Aidan | Computing | | Beam size EPICS channels added to TCS-WS softIoc |
I've added a softIoc to TCS-WS to capture the beam size from the MAKO camera. The IOC is run using ...
controls@tcs-ws:~$ softIoc -S EPICS_IOC/iocBoot/iocfirst/st.cmd &
The st.cmd contains the following text:
controls@tcs-ws:~$ more EPICS_IOC/iocBoot/iocfirst/st.cmd
dbLoadDatabase "/home/controls/EPICS_IOC/db/beamSize.db"
iocInit
The db file is:
controls@tcs-ws:~$ more EPICS_IOC/db/beamSize.db
record(ai, "C4:AWC-MAKO_BEAMSIZE_WX")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAMSIZE_WY")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_X")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_Y")
{
field(PREC,"3")
}
|
198
|
Thu Oct 26 10:31:31 2017 |
Aidan | Computing | DAQ | Beam size EPICS channels added to TCS-WS softIoc |
These are also being written to frames on FB4.
Quote: |
I've added a softIoc to TCS-WS to capture the beam size from the MAKO camera. The IOC is run using ...
controls@tcs-ws:~$ softIoc -S EPICS_IOC/iocBoot/iocfirst/st.cmd &
The st.cmd contains the following text:
controls@tcs-ws:~$ more EPICS_IOC/iocBoot/iocfirst/st.cmd
dbLoadDatabase "/home/controls/EPICS_IOC/db/beamSize.db"
iocInit
The db file is:
controls@tcs-ws:~$ more EPICS_IOC/db/beamSize.db
record(ai, "C4:AWC-MAKO_BEAMSIZE_WX")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAMSIZE_WY")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_X")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_Y")
{
field(PREC,"3")
}
|
|
199
|
Thu Oct 26 10:45:44 2017 |
Aidan | Computing | DAQ | Beam size EPICS channels added to TCS-WS softIoc |
See attached photo for how data is written to frames ...
Quote: |
These are also being written to frames on FB4.
Quote: |
I've added a softIoc to TCS-WS to capture the beam size from the MAKO camera. The IOC is run using ...
controls@tcs-ws:~$ softIoc -S EPICS_IOC/iocBoot/iocfirst/st.cmd &
The st.cmd contains the following text:
controls@tcs-ws:~$ more EPICS_IOC/iocBoot/iocfirst/st.cmd
dbLoadDatabase "/home/controls/EPICS_IOC/db/beamSize.db"
iocInit
The db file is:
controls@tcs-ws:~$ more EPICS_IOC/db/beamSize.db
record(ai, "C4:AWC-MAKO_BEAMSIZE_WX")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAMSIZE_WY")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_X")
{
field(PREC,"3")
}
record(ai, "C4:AWC-MAKO_BEAM_POSN_Y")
{
field(PREC,"3")
}
|
|
|
201
|
Tue Oct 31 14:37:49 2017 |
Aidan | Computing | DAQ | New Acromag units for AWC experiments - XT1221 ans XT1541 |
I set up an Acromag DAC today with the fixed IP address 10.0.1.56. Last Friday Andrew and Antonio set up an ADC unit with fixed IP address 10.0.1.55. The former is for outputting a control voltager that goes to the driver for the heater on composite mirror we are testing. The latter is used to read the temperature of the thermocouple on the composite mirror. The thermocouple to voltage conversion is achieved with a Type K Thermocouple Amplifier unit from The Sensor Connection.
The temperature sensor channel is C4:AWC-TEMPMON_C. We took a couple of different measurements of temperature and calibrated the conversion from volts to Celsius as: C = 122.06*V -0.67
The new temperature sensor channel is now being recorded in the frames. |
202
|
Thu Nov 9 14:18:56 2017 |
Aidan | Computing | DAQ | FB4 ip address has changed |
We've had trouble logging into FB4. I access the computer directly in the AWC lab and found that the IP address had changed from 10.0.1.156 to 10.0.1.161.
I'm not sure how this happened. It's possible that the IP address is not set to a static value and FB4 was rebooted. I'm not familar with Debian so I don't know where to look to find whether the IP address is static or not.
The DAQD is still running. |
206
|
Mon Feb 5 15:08:06 2018 |
Aidan | Computing | DAQ | Frame builder clock is totally wrong |
The framebuilder on FB4 thinks the current time is 26-Jan-2018 6:18AM UTC. The date command on FB4 yields the correct date and time (5-Feb-2018 15:17 PST).
There is a major error with the framebuilder clock. |
207
|
Thu Feb 8 15:42:13 2018 |
Aidan | Laser | Laser | Low power CO2 laser [400mW] beam size measurement |
I did a beam size/beam propagation measurement of the low power CO2 laser (Access Laser L3, SN:154507-154935)
|
208
|
Fri May 11 12:32:21 2018 |
Aidan | Laser | Hartmann sensor | HWS green LED fiber launcher |
[Aidan, Marie]
We tested the output of the fiber launcher D1800125-v3. We were using a 6mm spacer in the SM1 lens tube and 11mm spacer in the SM05 lens tube and the 50 micron core fiber.
The output of the fiber launcher was projected directly onto the CCD. Images of these are attached (coordinates are in pixels where 100 pixels = 1.2mm)
There is a lot of high-spatial frequency light on the output. It looks like there is core and cladding modes in addition to a more uniform background. There was an indication that we could clear up these annular modes with an iris immediately after the fiber launcher but I didn't get any images. We're going to test this next week when we get an SM1 mountable iris. |
209
|
Fri May 11 16:18:47 2018 |
Aidan | Laser | Hartmann sensor | HWS green LED fiber launcher |
And here's the output of the fiber launcher when I fixed it at 313mm from the camera, attached an iris to the front and slowly reduced the aperture of the iris.
The titles reflect the calculated second moment of the intensity profiles (an estimate of the equivalent Gaussian beam radius). The iris is successful in spatially filtering the central annular mode at first and then the outer annular mode.
We'll need to determine the optimum diameter to get good transmission spatially without sacrificing too much power.
Quote: |
[Aidan, Marie]
We tested the output of the fiber launcher D1800125-v3. We were using a 6mm spacer in the SM1 lens tube and 11mm spacer in the SM05 lens tube and the 50 micron core fiber.
The output of the fiber launcher was projected directly onto the CCD. Images of these are attached (coordinates are in pixels where 100 pixels = 1.2mm)
There is a lot of high-spatial frequency light on the output. It looks like there is core and cladding modes in addition to a more uniform background. There was an indication that we could clear up these annular modes with an iris immediately after the fiber launcher but I didn't get any images. We're going to test this next week when we get an SM1 mountable iris.
|
|
210
|
Wed May 16 16:47:29 2018 |
Aidan | Laser | Hartmann sensor | HWS green LED fiber launcher - D1800125-v5_SN01 |
Here is the output from D1800125-v5_SN01.
Quote: |
And here's the output of the fiber launcher when I fixed it at 313mm from the camera, attached an iris to the front and slowly reduced the aperture of the iris.
The titles reflect the calculated second moment of the intensity profiles (an estimate of the equivalent Gaussian beam radius). The iris is successful in spatially filtering the central annular mode at first and then the outer annular mode.
We'll need to determine the optimum diameter to get good transmission spatially without sacrificing too much power.
Quote: |
[Aidan, Marie]
We tested the output of the fiber launcher D1800125-v3. We were using a 6mm spacer in the SM1 lens tube and 11mm spacer in the SM05 lens tube and the 50 micron core fiber.
The output of the fiber launcher was projected directly onto the CCD. Images of these are attached (coordinates are in pixels where 100 pixels = 1.2mm)
There is a lot of high-spatial frequency light on the output. It looks like there is core and cladding modes in addition to a more uniform background. There was an indication that we could clear up these annular modes with an iris immediately after the fiber launcher but I didn't get any images. We're going to test this next week when we get an SM1 mountable iris.
|
|
|
211
|
Fri May 18 16:32:37 2018 |
Aidan | Laser | Hartmann sensor | HWS green LED fiber launcher - D1800125-v5_SN01 |
Title was wrong - this is actually config [12,2,4,125]
Quote: |
Here is the output from D1800125-v5_SN01.
Quote: |
And here's the output of the fiber launcher when I fixed it at 313mm from the camera, attached an iris to the front and slowly reduced the aperture of the iris.
The titles reflect the calculated second moment of the intensity profiles (an estimate of the equivalent Gaussian beam radius). The iris is successful in spatially filtering the central annular mode at first and then the outer annular mode.
We'll need to determine the optimum diameter to get good transmission spatially without sacrificing too much power.
Quote: |
[Aidan, Marie]
We tested the output of the fiber launcher D1800125-v3. We were using a 6mm spacer in the SM1 lens tube and 11mm spacer in the SM05 lens tube and the 50 micron core fiber.
The output of the fiber launcher was projected directly onto the CCD. Images of these are attached (coordinates are in pixels where 100 pixels = 1.2mm)
There is a lot of high-spatial frequency light on the output. It looks like there is core and cladding modes in addition to a more uniform background. There was an indication that we could clear up these annular modes with an iris immediately after the fiber launcher but I didn't get any images. We're going to test this next week when we get an SM1 mountable iris.
|
|
|
|
214
|
Thu Jun 21 17:12:38 2018 |
Aidan | Laser | Hartmann sensor | Two inch PBS from Edmund Optics - effect on ETM HWS transmission |
I'm considering the 86-711 2" 532nm PBS from Edmund Optics for the ETM HWS at the sites.
https://www.edmundoptics.com/optics/polarization/linear-polarizers/532nm-50mm-diameter-high-energy-laser-line-polarizer/
The effect on the transmission through the system, compared to the THorlabs PBS, is shown in the attached plot.
Conclusion: it looks almost as effective as the Thorlabs PBS with the added benefit of being 2" in diameter. |
221
|
Thu Aug 16 11:52:27 2018 |
Aidan | Computing | DAQ | Added AWC thermocouple reader back to acromag1 |
- Thermcouple reader is plugged into an Acromag ADC (10.0.1.55)
- acromag1 is now reading this in:
- ~/modbus/iocBoot/iocTest/test_acromag.cmd (contains ip address of ADC)
- ~/modbus/db/TEMPMONCHANS.db (contains the EPICS channel definitions and calibration of thermocouple reader)
- C4:AWC-TEMPMON_C (output channel)
Restored work done in http://nodus.ligo.caltech.edu:8080/TCS_Lab/201
|
223
|
Fri Oct 26 09:49:47 2018 |
Aidan | Misc | Optics | Starting 80C cure of epoxy |
I've started an 80C cure of two materials bonded by EPOTEK 353ND. The objective is to see (after curing) how much the apparent glass transition temperature is increased over a room-temperature cure. |
224
|
Tue Dec 4 16:57:08 2018 |
Aidan | Computing | Hartmann sensor | Updated GIT version of HWS code |
I changed the HWS code to the new git.ligo HWS version.
- Object files are in ~/hws
- scripts are in ~/hws-server
- utilities are still in old git repo moved to ~/.HWS_code_temporary_home
I've set up some symbolic links to these directories to mimic the old directory structure, so ..
- ~/pyHWS links to new object file directory
- ~/pyHWS/scripts lnks to new scripts directory
- ~/pyHWS/utilities links to old utilities directory
|
225
|
Fri Feb 8 10:48:33 2019 |
Aidan | Lab Infrastructure | General | Water damage repair work in the TCS Lab |
Caltech Facilities has determined that the walls in the SE corner of the TCS Lab in West Bridge were water damaged during last weekend’s rain. They are going to remove the plaster from the walls and dehumidify the area for a week or so. All tables in the room are going to be covered with plastic for this process. In the short term I’ve shutdown all the equipment in the lab (including FB4). The 2-micron cavity-testing fabrication has been moved next door to the QIL. |
242
|
Tue Sep 3 10:49:57 2019 |
Aidan | Lab Infrastructure | General | Exhaust duct added for new bake area in TCS lab |
Facilities came in on Friday and teed off a new duct to provide exhaust for the proposed new vacuum bake area in the TCS Lab. Photos are attached.
We installed a plastic sheet between the work area and the rest of the lab (the rest of the lab was overpressurized relative to the work area). Also, they use a vacuum when doing any drilling.
|
244
|
Tue Jun 15 08:47:27 2021 |
Aidan | Lab Infrastructure | General | Cleaned up HWS table in preparation for lab move |
I cleaned up the HWS table in preparation for replacement with the 4x10 table. We still need to move the cabinet and get the enclosure out of the way.
|
245
|
Mon Jul 26 16:23:03 2021 |
Aidan | Misc | Flood | Lab flooded from broken pipe leading to sump room |
Koji: QIL/TCS entrance flooding. Check your lab
Anchal: Can someone take a look at CTN too?
Koij: TCS needs more people @aidan
Koji: CTN ok
Aidan: On my way
Shruti: Cryo seems fine
Aidan: There was a leak in a pipe in the wall of B265A. It was coming from the building air conditioner condensation overflow. Facilities has fixed the pipe and is working on clean-up |
246
|
Tue Jul 27 08:39:33 2021 |
Aidan | Misc | Flood | Tuesday (27-Jul) morning check - lab looks okay |
I checked the lab this morning. It was dry and there wall was in the same state as yesterday. |
247
|
Thu Aug 12 16:13:44 2021 |
Aidan | Lab Infrastructure | Flood | Carpentry shop removed wet plaster sections from the wall - it's drying for a few days |
The carpentry shop removed wet plaster sections from the wall following the flood (process was gentle scraping of wet plaster flakes, supervised by me). The wet section of wall needs a few days to dry and then they will plaster and paint it.
|
248
|
Wed Aug 25 11:28:56 2021 |
Aidan | Misc | Flood | Lab flooded from broken pipe leading to sump room |
11:29AM - Lab has flooded again this morning. I'm calling PMA. Looks to be the same issue as before.
Quote: |
Koji: QIL/TCS entrance flooding. Check your lab
Anchal: Can someone take a look at CTN too?
Koij: TCS needs more people @aidan
Koji: CTN ok
Aidan: On my way
Shruti: Cryo seems fine
Aidan: There was a leak in a pipe in the wall of B265A. It was coming from the building air conditioner condensation overflow. Facilities has fixed the pipe and is working on clean-up
|
|
249
|
Thu Aug 26 09:00:39 2021 |
Aidan | Misc | Flood | Lab flooded from broken pipe leading to sump room |
Some photos of water and clean-up.
Summary: I came into the lab around 11:30AM and found water on the floor in the changing room outside QIL/TCS. Turns out the condesation overflow pipe from the AC blew out again. This time near the ceiling. Water was on the floor but also had sprayed a little onto the tool chest and East optical table. A few optics got wet on the table. Initial inspection looks like electronics were spared with the exception of the "broken" spectrum analyzer that was on the floor.
Facilities came in and cleaned up the water. A small amount got into QIL but stayed near the door as the lab floor slopes up from the door area. They fixed the pipe and were looking into whether there was a blockage cuasing this problem. PMA was notified and John Denhart is coordinating follow-up.
Triage effort: given the AC was still active, John and I strung a temporary tarp across the two tables to block any spray.
Quote: |
11:29AM - Lab has flooded again this morning. I'm calling PMA. Looks to be the same issue as before.
Quote: |
Koji: QIL/TCS entrance flooding. Check your lab
Anchal: Can someone take a look at CTN too?
Koij: TCS needs more people @aidan
Koji: CTN ok
Aidan: On my way
Shruti: Cryo seems fine
Aidan: There was a leak in a pipe in the wall of B265A. It was coming from the building air conditioner condensation overflow. Facilities has fixed the pipe and is working on clean-up
|
|
|
250
|
Wed Apr 27 11:41:53 2022 |
Aidan | Lab Infrastructure | General | Lab clean-up to get ready for PD testing in old TCS Lab |
We (Aidan, Koji, Radhika, Aaron) partially tidied up the TCS Lab. The front table is clean and ready to recieve PD tesitng optics, electronics and vacuum hardware. We moved all electronics units (oscilloscopes, power supplies, etc) to the rack in the NE corner of the lab. The back table was partially tidied up. We need to schedule cleaning of the remaining tables in the lab and also an inventory and disposal of obsolete equipment in all the cupboards.
|
159
|
Thu Jun 7 00:23:11 2012 |
Aditi Mittal | Misc | LIGO 3G | Summary June 5 and June 6, 2012 |
June 5
-Discussed the actual project outline
-Installed Comsol on the system
-Learned the basics of Comsol with the help of tutorials available on 40m wiki
and others.
June 6
-Made few simple models in Comsol
-Studied LIGO GWADW slides for a better understanding of the project.
-Setup SVN to access remote repository.
|
161
|
Thu Jun 7 23:24:56 2012 |
Aditi Mittal | Misc | LIGO 3G | Summary June 7, 2012 |
-Created a COMSOL model for variation of temperature in two mass system.
-Used the above model for cryogenic conditions.
-checked it analytically. |
163
|
Fri Jun 8 23:51:13 2012 |
Aditi Mittal | Misc | LIGO 3G | Summary June 8, 2012 |
-Created a COMSOL model for cryogenically shielded test mass with compensation plate.
-Analyzed the behavior of the model in different size configurations. |
165
|
Mon Jun 11 20:53:31 2012 |
Aditi Mittal | Misc | LIGO 3G | Summary June 11, 2012 |
-Continued with the same cryogenic model created and varied the length of outer shield and studied the temperature variation inside.
-Compared the temperature difference given by COMSOL with manually calculated one. |