ID |
Date |
Author |
Type |
Category |
Subject |
819
|
Sun Aug 10 16:57:02 2008 |
rana | Summary | Photos | Photos from Vent 8/4 - 8/8 |
http://www.ligo.caltech.edu/~rana/40m/VentAug08/
I've added the D40 pictures from last week to this web page. I have done some cropping and
rotating to make things look better.
On page 3, there are some over head shots of the Michelson area so that one can use screw holes
to judge what the spacing between the suspensions is and also possibly the cavity lengths. Lets
also remember to measure the ITM-BS distance accurately using a tape measure or ruler while we
have the thing open. |
818
|
Fri Aug 8 17:54:52 2008 |
Jenne | Update | SUS | Standoffs and Guide Rods |
After closer inspection of other small optics, it is clear that the guide rods should be above the standoffs on our small optics. Yoichi took a picture of the SRM that shows this clearly. This makes sense since the tension of the wire will make the standoff 'want' to go up during pre-epoxy adjustment, so the guide rod prevents the standoff from popping up and out.
Looking at the side of the PRM without the groove, it looks like there is lots of space between the guide rod and the alignment etch in the glass, so we can just place a standoff directly under the guide rod that is present.
A spare standoff is being shipped tomorrow morning, so we should have it by Monday for installation on the PRM. |
817
|
Fri Aug 8 15:10:35 2008 |
Yoichi | Update | SUS | No groove in the stand-off ... wait, it is not even a stand-off ! |
I tried to find the missing stand-off and the guide rod in the BS chamber, but I couldn't. |
816
|
Fri Aug 8 13:29:54 2008 |
Yoichi | Update | SUS | No groove in the stand-off ... wait, it is not even a stand-off ! |
Yoichi, Steve, Seiji
We took magnified pictures of the stand-offs of the PRM.
Attm1: North side stand-off.
Attm2: South side stand-off.
Attm3: Zipped file of the full pictures.
We found no groove in the south side stand-off.
After some discussion, we concluded that it is actually a guide rod. You can see it from the size difference (the magnification is the same for the two pictures).
The stand off on the south side is missing (fell off, ran away, evaporated or whatever ...).
Also we noticed that the guide rod on the north side is missing.
We have to find a stand-off and place it on the south side.
Seiji suggested that it is better to put a guide rod next to the north side stand-off, otherwise the stand-off itself is too weak to hold the load.
He also said that the PRM was installed after he left, so it was not his fault. |
815
|
Fri Aug 8 12:21:57 2008 |
josephb | Configuration | Computers | Switched X end ethernet connections over to new switch |
In 1X4, I've switched the ethernet connections from c1iscex and c1auxex over to the new Prosafe 24 port switches. They also use the new cat6 cables, and are labeled.
At the moment, everything seems to be working as normally as it was before. In addition:
I can telnet into c1auxex (and can do the same to c1auxey which I didn't touch).
I can't telnet into c1iscex (but I couldn't do that before, nor can I telnet into c1iscey either, and I think these are computers which once running don't let you in). |
814
|
Fri Aug 8 11:04:34 2008 |
Sharon | Update | | MCL Wiener filter |
I took some old data from Rana and converted the units of the Weiner filter to m/m so to make the effect of the seismometer and accelerometers more obvious.
The data is in counts, and so to convert to m this is what I did:
%%% MC_L calibration
v_per_counts = 5/32768;
v_per_v = 3;
amp_per_N = 1/0.064;
%%% Accelerometers calibration
v_per_counts_acc = 61.045e-6;
g_per_v = 9.8/100;
%%% Seismometer calibration
v_per_counts_seis = 61.045e-6;
m_per_s_per_s_per_volt = 9.8/100;
m_per_v_per_s = 1/345;
for jj=1:6
hfmatm(:,jj)=hfmat(:,jj).*(v_per_counts.*v_per_v.*amp_per_N.*f)./(v_per_counts_acc*g_per_v); %%% accelerometers' data
end
hfmatm(:,7)=hfmat(:,7).*(v_per_counts.*v_per_v.*amp_per_N)./(v_per_counts_seis*m_per_v_per_s); %%% Seismometer data |
813
|
Fri Aug 8 10:58:05 2008 |
josephb | Configuration | Cameras | Cameras and gstreamer |
In regards to camera failure:
1) I forgot to reconnect that particular camera to the network (my fault) so thats why it was failing.
2) Even with the correct camera connected, I've realized at full frame rate, op440m is going to get a few frames and then fail, as I don't think it has a fast enough ethernet card. It will work on Rosalba, and will also work ssh-ing from Rosalba because it is using a new ethernet card. It also works on my laptop, which is where I originally tested the command. One way to get around this is to increase the time between pictures, by changing -l 0 to -l 1 (or higher), where the number after the "ell" is the number of seconds to wait between frame captures.
3) What I should do is figure out the UDP transmission plugins for gstreamers and compress first (using the theoraenc since it gets compression ratios of better than 100:1) and transmit that over the network.
I have since reconnected the camera, so it should work on Rosalba and any sufficiently well connected computer. For other machines like linux2 or op440, try the following line:
Running the following command on Mafalda (via ssh -X mafalda) or Rosalba while in /cvs/cds/caltech/target/Prosilica/40mCode/SnapCode/
CamSnap -F 'Mono8' -c 44058 -E 10000 -X 0 -Y 0 -H 480 -W 752 -l 1 -m 100 | gst-launch-0.10 fdsrc fd=0 blocksize=360960 ! video/x-raw-gray, height=480, width=752, bpp=8,depth=8,framerate=1/1 ! ffmpegcolorspace ! ximagesink
This will be at a much slower frame rate (1 per second) but should work on any of the machines. (Tested on linux2). |
812
|
Fri Aug 8 09:54:10 2008 |
rana | Update | Cameras | New code + gstreamer allows for easy saving and compression of images |
Quote: | Modified the CamSnap code to output the image data stream to standard out. This can then be piped into a gstreamer plugin and then be used |
Didn't work; Prosilica has only 1 "l". Even so, sshing from op440m to mafalda, I got this:
mafalda:SnapCode>CamSnap -F 'Mono8' -c 44058 -E 5000 -X 0 -Y 0 -H 480 -W 752 -l 0 -m 300 | gst-launch-0.10 fdsrc fd=0 blocksize=360960 ! video/x-raw
-gray, height=480, width=752, bpp=8,depth=8,framerate=30/1 ! ffmpegcolorspace ! theoraenc ! oggmux ! filesink location="./testVideo.ogm"
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
** (gst-launch-0.10:27121): WARNING **: Size 60 is not a multiple of unit size 360960
Caught SIGSEGV accessing address 0x487c
ERROR: from element /pipeline0/ffmpegcsp0: subclass did not specify output size
Additional debug info:
gstbasetransform.c(1495): gst_base_transform_handle_buffer (): /pipeline0/ffmpegcsp0:
subclass did not specify output size
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
#0 0xffffe410 in __kernel_vsyscall ()
#1 0xb7deddae in __lll_mutex_lock_wait ()
#2 0xb7de9aac in _L_mutex_lock_51 () from /lib/tls/i686/cmov/libpthread.so.0
#3 0xb7de949d in pthread_mutex_lock ()
#4 0xb7e452e0 in g_static_rec_mutex_lock () from /usr/lib/libglib-2.0.so.0
#5 0xb7f1fa08 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#6 0x080c1220 in ?? ()
#7 0x00000001 in ?? ()
#8 0x0809586c in ?? ()
#9 0x00000001 in ?? ()
#10 0x08095868 in ?? ()
#11 0xb7f7a2a8 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#12 0xb7e8da80 in ?? () from /usr/lib/libglib-2.0.so.0
#13 0xb7f7a2a8 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#14 0xb7f7a2a8 in ?? () from /usr/lib/libgstreamer-0.10.so.0
#15 0x00000000 in ?? ()
Spinning. Please run 'gdb gst-launch 27121' to continue debugging, Ctrl-C to quit, or Ctrl-\ to dump core.
Caught interrupt --
|
811
|
Thu Aug 7 17:32:23 2008 |
Jenne | Update | SUS | Afternoon PRM activities |
Rana, Jenne, Yoichi, Dmass
After Yoichi confirmed this morning that the wire was in both grooves, Rana attempted to lift the PRM a tiny bit, and twist it around (very gently of course) to see if we could make the wire slip back to its nominal position underneath the optic. On the first attempt, the wire ended up slipping the wrong way, causing slightly more tilt. On another attempt, the wire came out of the groove nearest the chamber door by about 0.5mm. We got the wire back in the groove by slightly lifting the optic, and pushing the wire back in. Then, on further attempts at making the wire slip back to its nominal position, the wire came out of the groove farthest from the chamber door. It is very difficult to get at that side of the PRM, because the table is crowded, and it is on the far side of the optical table from the chamber door. We decided to pull the PRM out of the chamber. Rana clamped the mirror into its cage using the earthquake stops and removed the OSEMS, and then we pulled the mirror out. We put it on a cart that was covered with foil and had a little foil house for the optic cage. We rolled the mirror+cage over to the flow bench at the end of the y-arm.
We saw that the wire is no longer even on the standoff (~3mm away from the groove) on the side that was farthest from the chamber door.
Since we have not confirmed that we have spare wire and spare magnets (and due to the time of day), we have decided to cover the cage with some foil, while it is sitting on the flow bench, and we'll fix the wire in the morning. |
810
|
Thu Aug 7 12:20:52 2008 |
Yoichi | Update | SUS | PRM stand-offs and wire |
We removed the side OSEM of the PRM so that we can see the stand-off on the farther side.
Attachment 1: Farther side stand-off from an angle before removing the OSEM
Attachment 2: Farther side stand-off through the empty OSEM hole.
Attachment 3: Near side stand-off
The wire is definitely in the near side stand-off groove.
Probably the wire is in the groove also on the farther side. |
809
|
Thu Aug 7 11:54:26 2008 |
josephb | Configuration | Cameras | New code + gstreamer allows for easy saving and compression of images |
Modified the CamSnap code to output the image data stream to standard out. This can then be piped into a gstreamer plugin and then be used to save, encode, transmit, receive, slice, dice and or mangle video (or virtually any type of data stream).
The gstreamer webpage can be found at: http://www.gstreamer.net/
Under documentation you can find a list off all available plug-ins. Some good, some bad, some ugly.
Running the following command on Mafalda (via ssh -X mafalda) or Rosalba while in /cvs/cds/caltech/target/Prosilica/40mCode/SnapCode/
CamSnap -F 'Mono8' -c 44058 -E 15000 -X 0 -Y 0 -H 480 -W 752 -l 0 -m 1000 | gst-launch-0.10 fdsrc fd=0 blocksize=360960 ! video/x-raw-gray, height=480, width=752, bpp=8,depth=8,framerate=1/1 ! ffmpegcolorspace ! ximagesink
This command will create a window which displays what the camera with UID 44058 is looking at. It will display 1000 images, then quit. (You can switch the -m 100 to -i to just have it continue until the process is stopped).
You can also encode the data into compressed format and save it in a media file. The following command line will encode the images into an ogg media file (.ogm), which can be played with the totem viewer (available on Rosalba or almost any machine running Ubuntu or Centos) or any other viewer capable of handling ogm files. By switching the plugins you can generate other formats as well.
The compression is good, putting 300 images normally about 500K individually uncompressed to about 580K as a single file.
The following command line was used to generate the attached video file:
CamSnap -F 'Mono8' -c 44058 -E 5000 -X 0 -Y 0 -H 480 -W 752 -l 0 -m 300 | gst-launch-0.10 fdsrc fd=0 blocksize=360960 ! video/x-raw-gray, height=480, width=752, bpp=8,depth=8,framerate=30/1 ! ffmpegcolorspace ! theoraenc ! oggmux ! filesink location="./testVideo.ogm"
Currently looking into plugins which allow you to pull individual frames out of a video file and display or save them in a variety of formats. This would allow us to save long term images in compressed video format, and then pull out individual frames as needed.
Also need to look into how to "T" the streams, so one can be displaying while another encodes and saves. |
808
|
Thu Aug 7 10:27:59 2008 |
rana | Update | SUS | Free swinging OSEM spectra |
Sometimes we see extra peaks in the OSEM spectra coming from a beat between the regular eigenmodes.
This probably comes from the OSEM shadow sensor not being entirely linear - the nonlinearity is
greatly increased if the magnet is not perfectly centered in the LED beam. So the beats are
probably there at some level in all of them; usually below the noise. |
807
|
Thu Aug 7 10:07:13 2008 |
Yoichi | Update | SUS | Free swinging OSEM spectra |
Looks like there are more extra peaks in the SRM than other optics.
Maybe because it is closer to the door ? |
806
|
Wed Aug 6 22:19:07 2008 |
Yoichi | Update | SUS | BS alignment |
Koji, Yoichi
We realized that we did not pay attention to the BS alignment while working on the alignment of the ITMX today. Because we were injecting the ALM laser (absolute length measurement laser) from the AS port, the ITMX alignment depends on the BS alignment.
The BS optical lever was not centered and the sum was about 2000cnt, which is low compared, for example, to the SRM oplev.
So we were not sure if the BS was in a good alignment or not.
So we decided to move the BS to center the QPD.
In doing so, we also moved the ITMX so that we do not lose the ALM laser beam coming back to the AS port.
When the BS oplev was centered, the sum of the QPD was still about 2000. So it was not far off centered.
After the tweaking, we were able to see some interference between the light reflected by the ITMY and ITMX at the AS port (actually this is the bright port for the ALM laser). By tweaking the ITMY, we were able to see Michelson fringes at the AS port.
If we believe the ALM laser alignment is still good after the vent, the ITMX, ITMY, BS and SRM should be now in a good alignment condition.
The OSEM values for the ITMX, BS, SRM seem to be ok (0.9+/-0.2). The ITMY LL is a bit low (~ 0.45). |
805
|
Wed Aug 6 19:01:15 2008 |
Alberto | Update | General | ITMX and SRM OSEM post-earthquake diagnostic |
Koji, Yoichi, Alberto
Today we reset the OSEMs on ITMX and SRM in order to be centered when the mirrors are aligned to the IFO beam. Since the PRM is still out of order, we used the beam from NPRO laser of the absolute length measurement experiment as it is injected through the AS port.
That’s how we did it:
1) We aligned the SRM so that the reflected beam from the NPRO was at the camera after at the AS port.
2) We traded off the alignment of SRM in order for the reflected beam at the camera to have a nice shape, avoiding any clipping from the optics, and for the optical lever to be not too far from zero. The final alignment for SRM, as read on the sliders on the MDM screen, is: Pitch=1.1650, Yaw=1.4674.
3) We aligned ITMX checking out by an IR card that the incoming and the reflected main beam in between ITMX and the BS matched. The alignment of the two beams was improved checking the matching after the SRM. The final alignment for ITMX, as read on the sliders on the MDM screen, is: Pitch=-1.2937, Yaw=-0.9890.
4) After the alignment of SRM and ITMX these were the voltages at the OSEMs:
SRM
UL=0.957
UR=1.254
LR=0.768
LL=0.620
Side=0.958
ITMX
UL=1.144
UR=1.360
LR=0.591
LL=0.325
Side=-----
5) Finally we centered the OSEMs on both mirrors and we read these voltages:
SRM
UL=0.939
UR=0.994
LR=0.782
LL=0.938
Side=0.953
ITMX
UL=0.918
UR=0.891
LR=0.887
LL=0.875
Side=0.883 |
804
|
Wed Aug 6 13:57:44 2008 |
Masha | Summary | Auxiliary locking | weekly summary |
Finished second progress report.
Working on improving the sensitivity of the Mach Zehnder to more accurately measure the fiber noise. Making more stable mounts that have fewer degrees of freedom/springs and are more solid should get rid of their vibrational modes and help with the noise. I found a good mount for the Faraday Isolator, and John and Aidan helped me to make the solid aluminum blocks to mount the fiber couplers. I'll also replace the laser feet with a similar solid mount. I will also get a plastic box to block out acoustic noise/air currents/etc. Am starting to couple into the fiber again; now I am using polarization maintaining fiber.
I am starting to plan the fiber noise cancellation setup, and thinking about the noise sources and their effects. |
803
|
Wed Aug 6 13:15:57 2008 |
Yoichi | Update | SUS | SRM ETMX freeswing spectra |
After yesterday's work on the SRM, I took free swinging spectra of SRM.
The eigen modes look ok. But there are many other peaks which were not present in vacuum.
Some of those peaks may be resonances of the air inside the chambers and the pipes.
However, the peaks around 0.2Hz are too low frequency for those air compression modes.
I took the ETMX spectra at roughly the same time. I chose ETMX because we have not touched it after the vent.
ETMX also shows some extra peaks but the frequencies are different. |
802
|
Wed Aug 6 11:43:52 2008 |
Koji | Update | General | Abs. Len. Meas. ~ analysis of the TEM01 scan |
Analysis of the data on August 3th ~ Part 2
o I already have reported that the resonant freq of TEM10 and TEM01 split.
o Again, note that TEM10/01 were arranged almost in the horizontal/vertical by the observation of the video.
o The peaks of TEM10 and TEM01 were fitted with the same method as of TEM00.
o The peak freqs were:
f_TEM10: 5087040 Hz +/- 20 Hz
f_TEM01: 5068322 Hz +/- 15 Hz
The split is 18.7kHz.
o The additional parameter from the previous entry:
f_TEM00: 3879252 Hz +/- 9 Hz
L_yarm: 38.6462 m +/- 0.0003 m
o Radius of curvature
Rx = L /(1-Cos^2(Pi (f_TEM10 - f_TEM00) / (c/L/2) ))
Ry = L /(1-Cos^2(Pi (f_TEM01 - f_TEM00) / (c/L/2) ))
from these formula we get the value
Rx = 56.1620 +/- 0.0013 [m]
Ry = 57.3395 +/- 0.0011 [m] |
801
|
Wed Aug 6 11:10:34 2008 |
Koji | Update | General | Abs. Len. Meas. ~ analysis of the TEM00 scan |
Analysis of the data on August 3th ~ Part 1
From the measurement of the 5 FSRs, the FSR frequency for the Yarm cavity was estimated as
f_FSR = 3878678 Hz +/- 30 Hz
and the Yarm length is
L_yarm = 38.6462 m +/- 0.0003 m
This is the precision of 8ppm. In my opinion, this is a satisfactory result for our purpose.Y-arm length
e-log length [m]
-----------------------------
556(2008-Jun-24) 38.70 +/- 0.08 Cavity swinging measurement
556(2008-Jun-24) 38.67 +/- 0.03 Tape & photo
776(2008-Jul-31) 38.640 +/- 0.007 Beam injection, poor PLL, Transmitted DC
782(2008-Aug-02) 38.6455 +/- 0.0012 Beam injection, independent PLL, Transmitted DC
787(2008-Aug-04) 38.64575 +/- 0.00037 Beam injection, independent PLL, Transmitted RF
this(2008-Aug-04) 38.6462 +/- 0.0003 Beam injection, independent PLL, Transmitted RF, five FSRs, freq calibrated
----------------------------- ----------------
o According to the entry 795, all of the scan frequency was calibrated.
o The five peaks of the scanned data for TEM00 were fitted. Each peak was fitted by the following formula:
V(f) = A / Sqrt(1 - ((f-f0)/fc)^2)
Variable
f: scan frequency
Parameters
A: peak amplitude
f0: center frequency
fc: half bandwidth of the peak for -3dB
o The results are shown in the attached figure 1. They look very similar each other but they are different plot! The fittings were extremely good. The center frequencies estimated were as follows:
FSR1: 3879251.9 Hz +/- 8.8 Hz
FSR2: 7757968.1 Hz +/- 10.8 Hz
FSR3: 11636612.9 Hz +/- 10.2 Hz
FSR4: 15515308.1 Hz +/- 8.7 Hz
FSR5: 19393968.7 Hz +/- 8.4 Hz
o The FSR frequencies were fitted by a line. The fitting and the residuals are shown in the attached figure 2.
The fitting results were
f_FSR(n) = 586.4 + 3878678 * n
This means that:
o FSR frequency was 3878678 [Hz].
o The lock of the carrier had detuning of 586 [Hz].
The detuning of the carrier from the resonance can be explained by the alignment drift. In deed, at the end of the measurement, decrease of the transmitted power by -15% was found. Then, the frequency of the 1st FSR was measured before and after the alignment adjustment. This changed the frequency of the FSR1 by 350Hz. This change could not be explained by the cavity length change as this is too big (~3.5mm).
Actually, the spacing of the cavity length is more stable. The residual is rather scattered with in 20-30Hz. So, I took the error of 30Hz as the whole precision of the frequency measurement that includes the fluctuation of the alignment, the cavity length itself, and so on. This yields the FSR and the cavity length of
f_FSR = 3878678 Hz +/- 30 Hz
L_yarm = 38.6462 m +/- 0.0003 m . |
800
|
Tue Aug 5 17:56:23 2008 |
Alberto | Configuration | General | SRM and PRM inspection |
Yoichi, Koji, Rana, Steve, Alberto
Today we opened the BSC to inspect the optics, and in particular the SRM and PRM.
We found that one of the side magnets of the SRM was broken and a piece of it fell and got stuck to the LR magnet.
We removed the LR OSEM and took off the broken part with tweezers. Since we couldn’t replace the magnet on the side,
we decided to just switch the OSEM to the other side were a second magnet was available. Then we centered the OSEMs.
Using the optical levers we aligned both the ITMX and the SRM so that now we have to center again the OSEMs on both.
The PRM was visibly tilted and it was out of the range of the OSEMs. To try to fix the tilt we lift it up a little
with the screws on the bottom and pushed it with the third screw on top. That had the effect of making the mirror
tilt to the opposite direction. We looked at the wires (see attached picture) and it seemed centered on the side
of the mirror.
Tomorrow we are going to reset the OSEMs on ITMX and SRM and then we’re going to try to fix the tilt on PRM. |
799
|
Tue Aug 5 12:52:28 2008 |
Yoichi | Update | SUS | ITMX, SRM OSEM spectra |
Free swinging spectra of ITMX and SRM.
ITMX seems to be ok after yesterday's work, though the OSEM DC values are still a bit off from the normal value of 0.9.
(ITMX OSEM values: UL=1.12, UR=1.38, LR=0.66, LL=0.41, SIDE=0.66)
SRM is still clearly wrong. |
798
|
Tue Aug 5 10:56:05 2008 |
Alberto | Configuration | General | ITMX chamber opened and mirror released |
D-Mass, Steve, Rana, Koji, Yoichi, Alberto,
We opened the ITMX chamber to check the optics after last week earthquake. In particular, from the spectra, ITMX seemed to be stuck and had to be released again. When we inspected the mirror, we found that it wasn’t necessary to touch it. It had become free again during the vent thanks to the change of conductivity in the air inside during the vent.
We checked the magnets and they seemed to be fine.
A couple of stop screws had lost the rubber on their tips, although we don’t know if that was due to the earthquake.
We also took advantage of the opening to center the LR and the left OSEMs in the mirror to their zero.
Inspecting the table we found a couple of things not totally clear on the configuration of the optics in the table. In particular we found a beam dump located too close to the ifo beam. Eventually we found out that the dump was meant to block a ghost beam coming from the ITM. A better location should probably be figured out for that. We also found that the POXM1 mirror designed to have the maximum reflectivity for the P polarization of the beam at 45 degrees is mounted so that the incident beam is at 22 degrees. This cause the beam to be 90% transmitted and only 10 percent reflected to POX. The transmitted beam appears at ther BSC chamber.
The ifo beam passes so close to the POXM1 mirror so that it can be clipped by its large metal frame ring. The beam at that point is about 6mm large and the ring is about 1cm thick so that we could gain some distance with a different mount. |
797
|
Tue Aug 5 10:23:00 2008 |
steve | Update | SUS | earthquake and venting effects |
atm 1, EQ
atm 2, vent 7 days later: venting kicks optic into place to be free,
PRM: LR magnet gets pushed in and it is stocked, side in free |
796
|
Tue Aug 5 02:39:55 2008 |
Koji | Configuration | General | Abs. Len. Meas. ~ Optical Layout on the AP / PSL table 2008-Aug-05 |
Here are the PDF and the PNG of the AP and PSL table layouts.
After this photo, the squeezing setup at the AP table was removed. |
795
|
Tue Aug 5 00:05:57 2008 |
Koji | Update | General | Abs. Len. Meas. ~ IFR2023A calibration |
Work log on August 4th
o IFR2023A (Marconi) was calibrated by the SR620 frequency counter which is locked to the GPS signal.
o The frequency of the IFR2023A was scanned from 1MHz to 20MHz with 1MHz interval. The readout of the frequency counter was recorded.
o The linear fit was taken.
f_freq_count = K0 + K1 * f_IFR [Hz]
K0 = 0.00 +/- 0.02
K1 = 0.999999470 +/- 0.000000001
o So, the IFR seems to have -0.5ppm systematic error. |
794
|
Mon Aug 4 22:31:10 2008 |
Koji | Update | General | Abs. Len. Meas. ~ Simple Test for TEM01/10 split |
Work log on August 3rd - Part3
Question:
o The TEM01 and TEM10 of the Yarm were found to split with 19kHz separation. Is this true?
o In which direction the eigenmodes are?
Thought:
o The separation of 19kHz is a kind of too big because the cavity bandwidth is several kHz.
o This means that "TEM01 and TEM10 can not resonate at the same time (by the PSL beam)".
Test:
o Imagine we are just using the PSL beam and playing with an arm cavity.
o Tilt the end mirror in pitch. Resonate the TEM01 mode (8-shaped).
o Then tilt the end mirror in yaw.
o a) If the resonances are degenerated within the bandwidth of the laser, it rotates freely.
o b) If the resonances splits, the tilt in yaw does not change the shape. Then suddenly jumps to TEM10 (by an accident).
Result:
o The shape does not change. Just jumps to the other mode. (The case above b.)
o The eigenmode looked like quite horizontal and vertical.
Conclusion: the mode really splits. |
793
|
Mon Aug 4 21:48:24 2008 |
Koji | Update | General | Abs. Len. Meas. ~ Scan for TEM00/01/10 |
Work log on August 3rd - Part2
o I tried to measure the frequency of the FSRs using TEM00 resonances. Also search of TEM01/TEM10 resonances were tried.
-----------
Measurement for TEM00
o The frequency of the injection beam was scanned from 2MHz to 20MHz using the LabVIEW panel with GPIB. The 1st figure attached below is the result of the scan. Equispaced peaks were found as expected. The interval of the peaks are about 3.89MHz. Each peaks were measured with freq intervals of down to 50Hz. I will analyze the center frequency of the peaks precisely later in order to have a final result.
Measurements for TEM01/TEM10
o The beam injection technique is thought to be useful for measureing the frequency of the higher-order resonances. In order to measure the higher-order resonances the modifications of the experimental setup were applied as below.
1) For TEM10 (the beam like "OO" shape), a razor blade which blocked the horizontal half of the transmitted beam was placed. We needed to disturb half of the beam because the beat between the PSL TEM00 and the injection TEM01 cancels if the PD receives all of the light.
2) The injection beam is slightly misaligned in the horizontal direction in order to enhance the coupling of the injection beam to the cavity TEM01 mode.
3) For TEM01 (the beam like "8" shape), a razor blade cutting the vertical half and the misalignment of the inj beam in the vertical direction are applied.
o The frequency of the injection beam was scaned from 1st FSR of TEM00 in the upward direction. The alignment of the arm cavity was left untouched during the measurement. As shown in the 2nd figure attached below, the resonances were found about 1.19MHz away from the TEM00, but they are separated by about 19kHz(!). This could be split of the degenerated modes which corresponds to the difference of the mirror curvature in two directions! This difference is something like 56 m and 57 m. Can you believe this?
(To be continued to the next entry) |
792
|
Mon Aug 4 16:20:20 2008 |
Dmass | Configuration | Photos | ITMX magnet position relative to OSEMS |
We have vented, and taken the following pics of the magnets to document their position before we ruin everything. |
791
|
Mon Aug 4 13:43:02 2008 |
Yoichi | Summary | PSL | FSS loop calibration |
As a part of the effort to repair the FSS loop bandwidth, I tried to calibrate the FSS loop.
First, I scanned the MOPA frequency by injecting a triangular wave into the ramp-in of the FSS box, which goes to the PZT of the NPRO.
The first attachment shows the transmitted light curve (pink one) along with the PDH signal (light blue).
The sweep was very slow (0.1Hz for 2Vp-p). From this measurement, the FWHM was 6.8e-3V. Then fpol = FWHM/2=3.4e-3V, where fpol is the cavity pole frequency.
So the PZT's DC response is 294*fpol/V. If we use the canonical fpol=38kHz, it is 11.172MHz/V.
Then I tried to measure the cavity pole. First I tried the cavity ring down measurement, by blocking the beam abruptly. Unfortunately, my hand was not fast enough.
The ring down shape was not an exponential decay.
I then locked the reference cavity only using the PZT with very narrow bandwidth (UGF=2kHz). I injected signal into the external modulation input of the 80MHz VCO
for the AOM. The second attachment shows the transfer function from this input to the IN2 (mixer output monitor port) of the FSS servo box.
To plot this, I corrected the measurement for the open loop TF (i.e. multiplying the measured TF with (1+G)), and other filters in the path (8MHz LPF after the ext. mod.
input of the 80MHz VCO, and an RCL network after the mixter). The gain looks like a cavity pole, but the phase decreases very rapidly.
If you look at the third attachment showing a wider band transfer function, there are notches at 1.8MHz and above. I couldn't find this kind of filter in the schematic.
Maybe this is the RFPD's bandpass filter. I will check this later. From these plots, it is difficult to tell the cavity pole frequency. From the -3dB point, fpol is around 83kHz,
but from the phase=-45deg point, fpol is around 40kHz.
Finally, I calibrated the cavity's optical gain by locking the Ref. Cavity with only PZT, and injecting a signal into the loop.
The signal was injected from Test-In2 of the FSS servo box and the transfer function from the PZT output signal (TP10) to IN1 (mixer output) was measured.
The transfer function was corrected for a 10Hz LPF after TP10.
The attachment4 shows a nice flat response up to 30kHz. Above 30kHz, the measurement is too noisy. The optical gain at DC is about 22dB from the PZT drive to the error signal (IN1).
Using fpol=38kHz, it means 887kHz/V calibration factor for the signal at IN1. There is a mixer output monitor DAQ channel in the FSS but it seems to be not working at the
moment. I will look into this later. There is a gain of 10dB between IN1 and the mixer monitor channel.
By looking at the phase response of the attachement4, there is a cavity pole like behavior around 30kHz. If we assume the PZT response is flat up to this frequency, it is
roughly consistent with fpol=38kHz.
I was not able to take a sensible spectrum of IN1 using the network analyzer. When the FSS servo was engaged, the signal was too small.
I will try to use an AF spectrum analyzer later to get a calibrated spectrum. |
790
|
Mon Aug 4 12:12:20 2008 |
steve | Configuration | VAC | the ifo is at atm |
The 40m vac envelope was vented this morning.
P1 is at 760 Torr |
789
|
Mon Aug 4 05:23:57 2008 |
Koji | Update | General | Abs. Len. Meas. ~ Measurement for Y-arm completed |
Finally, I have completed the abs length and g-factor measurements for Y-arm.
>>>GO FOR THE VENT<<<
I will report the results later.
Some notes on the status:
o Y-arm was aligned at the end of the experiment by the script. The values were saved.
o At the AP table, the injection beam and the flipper were left aligned so that the inj. beam can be used as a reference of the SRM and the ITMs. But the shutter of the NPRO was closed.
o The experiment setup was mostly left at the side of the AP table. I tried not to disturb the walk as much as possible.
o The long cable from the Y-end was wound and placed at the Y-end. The knife-edge was left on the Y-end bench. It is not disturbing any beam. |
788
|
Mon Aug 4 00:56:07 2008 |
Koji | HowTo | General | Abs. Len. Meas. ~ Auto freq scanner with GPIB |
Work log on August 3rd - Part1
o Yesterday I was too much tired of changing the RF frequency, reading peaks on the RF spectrum, and writing the values. Rana saw me and thought I was such poor that he gave me an USB-GPIB adapter.
o I dig into the internet for the manuals of the adapter, IFR2023A(Marconi), and HP8591E(RF spectrum analyzer) in order to learn how to use them.
o I had LabVIEW installed on my laptop. Finally I understand how to use that adapter (by Agilent) with LabVIEW. I made a small program to scan the frequency of IFR2023A, and read the peak values from HP8591E. It is unfortunate that there is no LabVIEW in the 40m lab. I think I can make an independent executable which does not need the LabVIEW itself. Give me some time to understand how to do it. |
787
|
Mon Aug 4 00:37:58 2008 |
Koji | Update | General | Abs. Len. Meas. ~ RF PD at the Y end / Manual frequency scan |
Work log on August 2nd
o Just remind you:
The idea of the absolute length measurement was to detect an RF beat between the injection beam and the PSL beam by resonating both of the beams to the cavity at the same time, but on different londitudinal modes. From the frequency separation between the two beams, we get the FSR of the cavity. In order to have an injection beam with stable frequency separation, a heterodne interferometer was built at the PSL table, and the PLL servo is used to control and stabilize the frequency of the inj. beam.
----------
o An RF PD (Tholab PDA255) and a steering mirror were placed at the Yarm END. Fortunately, I found that an unused BS was already in the optical path. There was a beam block which dump the reflection of the BS and some stray lights of the OPLEV. I moved the beam block to make the BS reflection available, as well as to block the OPLEV stray light still (Photo1). In order to have the RF signal from the PD, a long BNC cable was laid along the Yarm. I did't know any better idea than this. Don't blame me.
o To have an intuitive interpretation of the beat frequency, the injection beam was set to be at higher frequency than the PSL beam. How did I confirm this? When the crystal temp (LT) of the NPRO was tuned to be higher, the beat frequency got lower.
o Frequency of the PLL was manually swept at around 15.51MHz where the 4th FSR was expected to be found. I could see strong RF peak at that frequency! When I tuned the PLL frequency, the peak height changes dramatically! Too cool!
o The amplitude of the RF peak was measured by an RF spectrum analyzer. I did all of this scan by my hands and eyes. The center frequency of the 4th FSR was 15.5149MHz. From the eye I would say the error is +/-150Hz. It is OK so far although I am not sure statistically this is correct or not. This corresponds to the length of 38.64575 +/- 0.00037 [m].
o All of the past measurements are fairly consistent.
Y-arm length
e-log length [m] Measurement Conditions
----------------------------------------------------------------------------------------
556(2008-Jun-24) 38.67 +/- 0.03 Cavity swinging measurement
776(2008-Jul-31) 38.640 +/- 0.007 Beam injection, poor PLL, Transmitted DC
782(2008-Aug-02) 38.6455 +/- 0.0012 Beam injection, independent PLL, Transmitted DC
this(2008-Aug-04) 38.64575 +/- 0.00037 Beam injection, independent PLL, Transmitted RF
---------------------------------------------------------------------------------------- |
786
|
Sun Aug 3 20:53:54 2008 |
rana | Configuration | PEM | Guralp |
We got our repaired Guralp back in the mail from England (s/n T4157). I plugged it in
to Ben's 3-Guralp breakout box (http://www.ligo.caltech.edu/docs/D/D060506-00.pdf) and
verified that it is not oscillating (like it was before) and that it responds to us
jumping around.
The breakout box has way too much gain, however. The ADC wants +/-2 V and the box puts out
~5 Vpk in the night time.
Looking at the schematic, it has a DC gain of 200 and a double whitener (50,50:10,10) so that
there's a gain of 5000 from 50-2000 Hz. The Guralp has a transduction gain of 800 V/(m/s) and
so we can just calculate what the frequency dependent noise figure of the box has to be. I've
pulled it out, put it on the bench, and started reworking it. I am looking for a soldering/
testing volunteer.
The other kink in the problem is that since we want to use this for the adaptive noise cancellation,
we have to make the noise floor of the readout better than the ambient noise by the same factor
with which we want to cancel the noise. |
785
|
Sat Aug 2 18:37:41 2008 |
rana | Update | SUS | OSEM Spectra |
The attached PDF file is from the .xml files that I found from 7/30. Looks like someone
took some free swinging data and even made nice plots but didn't elog it. Raspberry for you.
The data files are saved in Templates/FreeSwinging/{ETMX,ETMY,etc.}/2008_07_30.xml
The top left plot on the multi-page file all have the same scale so you can see what's happened.
The peaks should all be as measured by Busby in Sep '06
but instead they are as you see here. |
784
|
Sat Aug 2 16:05:38 2008 |
rana | Configuration | Computer Scripts / Programs | mDV update |
I did an svn update on our mDV directory. Justin has improved it so that the NDS client binaries
are included for solaris, mac, linux32, and linux64. Now you can just use this version without
having to worry about any path definitions. |
783
|
Sat Aug 2 13:07:23 2008 |
Koji | Configuration | General | The AP table cleaned |
During the construction of the independent PLL I cleaned up some of the unused optics from the AP table. Essentially this should be harmless as they had already been isolated from any beam. They were related to Go's squeezing project and Osamu's MC Transmitted beam measurement.
Nevertherless, if you find any problem on the signals at the AP table (when the ifo returns), I am the person to be blamed.
I am going to update the table layout later next week. |
782
|
Sat Aug 2 12:53:43 2008 |
Koji | Update | General | Abs. Len. Meas. ~ New PLL at the PSL table |
Report of the work last night:
The new heterodyne interferometer on the PSL table was built.
The length of the Yarm cavity was measured with better precision.
-------------
Yarm is locked. The injection beam was aligned. The beat was there at around LT=48.9 [C_deg] of the NPRO.
The new PLL setup on the PSL table has been built. The two beams from the MC incident beam and the injection beam are
mode-matched with lenses. I measured the Rayleigh ranges of the beams by a sensor card and my eyes, and then placed
appropriate lenses so that they can have 5~6 [m] Rayleigh range. They looks a bit too thick but just ok for an inch
optics. The new PLL setup shows ~70% intensity modulation which is enormous. The servo is still SR560-based so far.
Now the PLL has no singular frequency within its range. I could sweep the 4th FSR of the cavity with 500Hz interval. I
was still observing at the transmitted DC.
At each freqency from 15.51MHz to 15.52MHz, a timeseries data of the Yarm transmitted was recorded at sampling of 32Hz for 10
seconds. The figure shows the averaged values of the transmitted DC with errors. An increase of the transmitted power by
3-4% was found. If we consider the resonance is at f_PLL = 15.515 +/- 0.0005 [MHz], this indicates the
arm cavity length of 38.6455 +/- 0.0012 [m].
Y-arm length
e-log length [m]
-----------------------------
556 38.70 +/- 0.08 Cavity swinging measurement
556 38.67 +/- 0.03 tape & photo
776 38.640 +/- 0.007 Beam injection, poor PLL, Transmitted DC
this 38.6455 +/- 0.0012 Beam injection, independent PLL, Transmitted DC
-----------------------------
NEXT STEPS:
o RF detection at the transmitted
o Better PLL: PLL stability (in-loop / out-of-loop)
o Measurement for the 1st~3rd FSR
o Reproducibility of the measurement
o Higher order mode search
o Check the acuuracy and presicion of the Marconi |
781
|
Fri Aug 1 16:33:52 2008 |
rana | Configuration | PSL | PSL Quad change and new script |
Here's the sensor ringdown trend from the kick. |
780
|
Fri Aug 1 11:51:15 2008 |
justing | Omnistructure | Computers | added /cvs/cds/site directory |
I added a /cvs/cds/site directory. This is the same as is dicsussed here. Right now it just has the text file 'cit' in it, but eventually the other scripts should be added. I'll probably use it in the next version of mDV. |
779
|
Fri Aug 1 10:45:46 2008 |
josephb | Configuration | Computers | Megatron now running tcsh |
At Rana's request, I've remotely switched Megatron over to using tcsh. I had to ssh -X in order ot use the "/sbin/system-config-users" program which is a graphical UI for modifying users. I had to go to preferences and uncheck hide system users, which then allowed me to see the controls user (at the bottom of the list), and edit it.
I also created a .tcshrc file in the /home/controls directory and copied the information from the .bashrc file, and also moved the matlab path definition into the PATH environment variable.
Does anyone know if sourcing /cvs/cds/caltech/cshrc.40m would be usable on a 64 bit machine, or does a new one need to be made for Megatron and/or Rosalba? |
778
|
Fri Aug 1 01:13:32 2008 |
rana | Configuration | PSL | PSL Quad change and new script |
Koji and I changed a few optics so that now ~60% of the beam that went to the PSL POS QPD
now goes to the west side of the table for the aux. laser locking PLL. The beam is sort of
on the QPD again but needs a centering.
After this work I wrote a script SUS/freeswing-all.csh which puts a 30000 count offset into
the UL coil of each suspension and then disables it. This is just good enough to kick it up
so that the eigenfrequency can be measured. I ran it and it worked -- it finished running at
Fri Aug 1 00:44:30 PDT 2008 |
777
|
Thu Jul 31 16:11:22 2008 |
josephb | Configuration | Computers | Matlab on Megatron |
Matlab now works on megatron.
I did a few things:
1) Added to the PATH environment variable. Did this in .bash_profile in the /home/controls directory by adding the line
PATH=$PATH:/cvs/cds/caltech/apps/linux64/matlab/bin/
export PATH
This probably should be somewhere else up further up the line, but I was too lazy to figure it out.
2)Fixed a gateway mistake I had added earlier so the megatron could use the NAT router and see the outside world so yum worked.
3) Removed the i386 based libXp and openmotif packages.
4) Installed the x86_64 based libXp and openmotif packages.
Edit: Forgot that I also added the following line to the /etc/fstab file in order to mount the shared code. This was stolen directly from Rosalba's /etc/fstab file. This was so that it could see the matlab code.
linux1:/home/cds/ /cvs/cds nfs rw,bg,soft 0 0 |
776
|
Thu Jul 31 11:19:30 2008 |
Koji | Update | General | Abs. Len. Meas. ~ Resonance search trial |
Last night, I tried to find the resonance of Yarm by sweeping the frequency of the injection beam.
A strong beat was present at LT_NPRO=48.7856[C_deg], the power coupling of the injection beam was estimated to be 35%.
(Vmax_beat = 1.060[V], Vmin_beat = 0.460[V], Vno_inject = 0.664[V])
The Yarm was locked and the alignment script was executed. The PLL between the PSL beam and the injection beam was
somehow locked.
I tried to scan the freq offset (f_PLL) at around 3.88MHz first, then at around 15.52MHz. They are supporsed to be the
first and fourth FSR of the Yarm cavity. The Yarm transmitted power (DC) was observed to find the resonance of the
injection beam. It would have been better to use the RF power, but so far I didnot have the RF PD prepared at the end
transmission. I just used the DC power.
I think I saw the increase of the transmitted power by 10%, at f_PLL = 15.517 +/- 0.003 [MHz]. This corresponds to the
arm cavity length of 38.640 +/- 0.007 [m]. The previous measurement was not so bad!
Y-arm length
e-log length [m]
-----------------------
556(2008-Jun-24) 38.70 +/- 0.08 Cavity swinging measurement
556(2008-Jun-24) 38.67 +/- 0.03 tape & photo
This 38.640 +/- 0.007
However, I had difficulties to have more precise measurement mainly because of two reasons:
o The PLL servo is too naive, and the freqency stability of the inj beam is not enough.
The injected beam should have the linewidth (=freq stability) narrower than the cavity linewidth.
o The PLL servo may experience change of the transfer function at around the resonance. The PLL works the other
frequencies. However, close to the resonance, it starts to be unstable.
So the next stuffs we should do is
o Build the PLL just using the incident beams to the ifo, not by the reflected beams.
o Build sophisticated servo to have better frequency stability.
o RF PD at the transmission.
Left the lab with Yarm locked, flipper down, shutter for the NPRO closed. |
775
|
Thu Jul 31 10:27:17 2008 |
rana | Update | PSL | PMC Scan Graphs |
Quote: | Graphs of the PMC scan data that I got earlier today.
|
On the UNIX computers, one can use 'convert' to change these to PNG. A DC offset should be added to the transmitted
light so that the scan can be plotted with a log y-scale. And, of course, Acrobat can be used to make it into a
single PDF file.
The PMC scan always has this distortion and so the input power has to be decreased to a few mW to reduce the
thermal expansion effect; the expansion coefficient for SiO2 is ~5 x 10^-7 / K and we're worried about nm level
expansions. |
774
|
Thu Jul 31 10:24:32 2008 |
Koji | Update | General | IFO status |
Last night I used the Y-arm for the abs length measurement. The Yarm was aligned by the script.
I left the ifo with the Yarm locked as it is the only meaningful configuration so far. |
773
|
Wed Jul 30 18:45:01 2008 |
rana | Configuration | SUS | New SUS Drift Technology |
I updated the SUS DRIFT screen again, this time with a new feature.
I used Rolf's idea for the AdvLIGO status system and just made the nominals be an
unused sub-field (.SVAL) of the main INMON record. Then I wrote a .csh script to
use tdsavg to average the current INMON vals and insert that as the .SVAL. The next
script should read the .SVAL and set the HIHI and LOLO based on this.
Of course, the values I have just entered are no good because our suspensions are in
a bad state but we can run this script (SUS/setDriftNoms) next time things are good.
And...even better would be if someone were to do the same but used mDV to grab the
minute trend in the past good times instead of the tdsavg (which can't go in the past). |
772
|
Wed Jul 30 16:35:56 2008 |
Eric | Update | PSL | PMC Scan Graphs |
Graphs of the PMC scan data that I got earlier today.
PMCLongScanWide.tiff shows the transmission intensity and PZT voltage plotted against time for a longer scan of the PMC (~120 seconds for one sweep).
PMCLongScanPeak.tiff is the same scan zoomed in on the primary peak. This scan was done with the laser power at around 1/3 its original value. However, scans done at around 1/6 the original value have peaks that are just as messy.
PMCShortScanWide.tiff shows the intensity and voltage for a more rapid scan (~30 second for one sweep). The black lines show how the peak positions are at very different PZT voltages (a difference of ~10 volts in both cases).
PMCShortScanPeak.tiff is zoomed in on the primary peak. The peak is much cleaner than for the long scan (less time for the laser's heat to expand the mirror?), though it is likely still too messy to reliably fit to a lorentzian. |
771
|
Wed Jul 30 15:28:08 2008 |
rob | Update | LSC | Y arm locked |
By using a combination of the SUS-DRIFT mon screen and the optical levers (which turned out pretty well) I steered the BS, ITMY, and ETMY back to their previous positions, and was able to lock the Y arm. The "Restore Y Arm" script on the IFO_CONFIGURE screen works. I couldn't test the alignment script, as a dump truck/construction vehicle showed up and started unlocking the MC. |
770
|
Wed Jul 30 15:12:08 2008 |
rana | Summary | IOO | History of the MC abs length |
> I was notified by Rob and Rana that there were many measurements of the MC abs length (i.e. modulation
> frequencies for the IFO.) between 2002 and now.
I will just add that I think that the Marconi/IFR has always been off by ~150-200 Hz
in that the frequency measured by the GPS locked frequency counter is different from
what's reported by the Marconi's front panel. We should, in the future, clearly indicate
which display is being used. |