ID |
Date |
Author |
Type |
Category |
Subject |
16145
|
Tue May 18 20:26:11 2021 |
rana | Update | PSL | HEPA speed raised |
Fluke. Temp fluctuations are as usual, but the overall temperature is still lower. We ought to put some temperature sensors at the X & Y ends to see what's happening there too. |
5922
|
Thu Nov 17 11:27:58 2011 |
Jenne | Update | PSL | HEPA turned down |
I was measuring things to see how big my adapter plate needs to be, and I decided that we'd had enough days of the HEPA being on full blast, so I turned it down to 50, from 100. I think it's been on full since Katrin was working on the Y-green beat a week or so ago. |
646
|
Tue Jul 8 10:20:10 2008 |
steve | Update | PEM | HEPA turned on |
It is specially important to run the PSL-HEPA filters when inside counts is peaking at 30,000 counts
There is a small label at the hepa on/off switch:
enclosure open 100%,
low noise off,
normal 60% of Variac voltage setting on the top of the enclosure
Not running the HEPAs will lower the temp fluctuations from 1.5 to o.5 degree C
at the cost of particle counts from 0 to immidiate room counts. |
Attachment 1: hepa.jpg
|
|
10429
|
Mon Aug 25 15:49:44 2014 |
Steve | Update | PSL | HEPA turned on |
The PSL HEPA was off. It was turned on and it is running at 30VAC now. |
6000
|
Thu Nov 24 14:05:10 2011 |
Koji | Update | PSL | HEPA@50% |
I left the HEPA at the 50% level @5AM, Nov 24 |
2165
|
Fri Oct 30 10:52:56 2009 |
Jenne | Update | PSL | HEPAs |
Zach found the HEPA switch on the PSL table OFF. He turned them on. |
15592
|
Mon Sep 21 16:40:52 2020 |
gautam | Update | PSL | HEPAs are no longer running |
The HEPA filters on the PSL enclosure are no longer running. I tried cycling the power switch on the NW corner of the enclosure, and also turned the dial on the Variac down to zero and back up to maximum, no effect. Judging by the indicator LED on it, the power is making it to the Variac - bypassing the Variac and directly connecting the HEPA to the AC power seems to have no effect either.
I can't be sure, but I'm almost certain I heard them running at max speed an hour ago while I was walking around inside the VEA. Probably any damage that can happen has already been done, but I dialled down the Innolight injection current, and closed its shutter till the issue can be resolved. |
1848
|
Thu Aug 6 19:54:04 2009 |
Stephanie | Update | PSL | HEPAs back to normal |
Quote: |
Stephanie has needed the doors to the PSL open all day, and still has them open, so I just turned the HEPAs on high.
|
I turned the HEPAs back down to ~50. |
15
|
Thu Oct 25 22:02:58 2007 |
rob | Routine | PSL | HEPAs maxed |
In light of the SoCal fires, I turned the PSL HEPAs up to 100%. |
12461
|
Thu Sep 1 15:40:52 2016 |
Steve | Update | SUS | HEPAs on each chamber door |
This is an option to isolate the vacuum chamber from the dusty 40m lab: 4x8 HEPA unit or Air Curtain
It does not limit crane operations. Here is some science based approach to air filters
Lets put horizontal and vertical witness plates next to our arm cavity TMs just before pumpdown.
|
Attachment 1: chamberDoorHepaEA.pdf
|
|
1844
|
Thu Aug 6 17:45:37 2009 |
Jenne | Update | PSL | HEPAs on high |
Stephanie has needed the doors to the PSL open all day, and still has them open, so I just turned the HEPAs on high. |
690
|
Thu Jul 17 13:08:37 2008 |
John | Summary | LSC | HOM resonances in the arms |
On Tuesday night we attempted to lock the full DRFPMI in the optical spring configuration with the +f2 sideband resonant in the SRC.
Despite having no problems locking on the +f2 in a DRM we couldn't lock the full IFO.
There was some discussion about whether a +f2 higher order mode resonance in the arms could cause this problem.
I calculated the positions of the first six higher order modes for the carrier and all sidebands (using Siegman p 762 (23) with a plus sign).
Plot attached. Colors indicate different frequency components, numbers are the mode index (m+n). Thick lines are fundamental modes of
the sidebands. Heights of HOM indicators have been scaled by 1/(m+n)^2.
It appears that the first order transverse mode of the +166 is indeed partially resonant. We might try to tweak the sideband frequencies a
little to see if this helps us. It would probably be prudent to measure the MC length first.
Numbers used:
L = 38.5750; %average of Alberto's recent measurements elog #556
Retm = 57.375;
f166 = 165.977195e6;
f33 = 33.195439e6; |
Attachment 1: HOMresonances.png
|
|
206
|
Thu Dec 20 19:05:34 2007 |
waldman | HowTo | OMC | HOWTO build front ends |
For instance, to build the TPT front end code.
- Save your file /cvs/cds/advLigo/src/epics/simLink/tpt.mdl
- go to /cvs/cds/advLIGO on the TPT machine
- do make clean-tpt tpt install-tpt
- do rm /cvs/cds/caltech/chans/daq/C2TPT.ini (this step is needed because the DAQ install code isn't quite right at the time of this writing.
- do make install-daq-tpt
- run starttpt to restart the tpt computer.
Enjoy. |
8352
|
Tue Mar 26 11:33:55 2013 |
Jamie | Update | Optics | HOWTO calculate effective RoC of flipped TT |
In case anyone is curious how I got the numbers for the effective radius of curvature of the flipped TT mirrors, I include the code below. Now you can calculate at home!
Here's the calculation for the effective RoC of a flipped SR2 with nominal un-flipped HR RoC of -600:
>> [Mt, Ms] = TTflipped(600, 5);
>> M2Reff('t', Mt, 5)
ans =
412.9652
>>
|
Attachment 1: mirror.m
|
function [Mt, Ms] = mirror(R, a1, n)
% [Mt, Ms] = mirror(R, a1, n)
if length(R) > 1
Rt = R(1);
Rs = R(2);
else
Rt = R;
Rs = R;
end
... 9 more lines ...
|
Attachment 2: transmission.m
|
function [Mt, Ms] = transmission(R, a1, n1, n2)
% [Mt, Ms] = transmission(R, a1, n1, n2)
if length(R) > 1
Rt = R(1);
Rs = R(2);
else
Rt = R;
Rs = R;
end
... 19 more lines ...
|
Attachment 3: TTflipped.m
|
function [Mt, Ms] = TTflipped(R, a1)
% [Mt, Ms] = TTflipped(R, a1)
if length(R) > 1
Rt = R(1);
Rs = R(2);
else
Rt = R;
Rs = R;
end
... 32 more lines ...
|
Attachment 4: M2Reff.m
|
function Reff = M2Reff(type, M, a)
% Reff = M2Reff('type', M, a)
n = 1;
R = -2*n/M(2,1);
ca = cos(a*pi/180);
switch lower(type)
... 8 more lines ...
|
1104
|
Sun Nov 2 20:21:58 2008 |
rana | Configuration | lore | HP 5550dtn (Grazia) set up on allegra |
I set up printing to grazia from allegra. The CUPS interface was not as straightforward as Tobin had made it seem in the Wiki. I had to type in the IP address and port number by hand.
The steps (AFAIR):1) Goto http://localhost:631/
2) Click on "Add Printer"
3) Choose HP JetDirect
4) Use the correct address (socket://131.215.115.220:9100)
5) Choose HP and the 5550 postscript driver as the options
6) Try to only print useful stuff and not kill too many trees. |
1217
|
Thu Jan 8 16:49:37 2009 |
rana | Configuration | lore | HP 5550dtn (Grazia) set up on allegra |
Quote: | I set up printing to grazia from allegra. The CUPS interface was not as straightforward as Tobin had made it seem in the Wiki. I had to type in the IP address and port number by hand.
The steps (AFAIR):1) Goto http://localhost:631/
2) Click on "Add Printer"
3) Choose HP JetDirect
4) Use the correct address (socket://131.215.115.220:9100)
5) Choose HP and the 5550 postscript driver as the options
6) Try to only print useful stuff and not kill too many trees. |
It ought to be root to do that. |
9837
|
Mon Apr 21 23:33:57 2014 |
rana | Summary | Green Locking | HP 8591E reads low by 140 Hz out of 10 MHz |
To check the basolute frequency stability of the old monochrome HP 8591E RF Spectrum analyzer that we're using for the ALS beat readout, I hooked its 10 MHz reference output (from its rear panel) into the A channel of the SRS SR620 frequency counter. The SR620 is locked to the FS 720 Rubidium clock via the 10 MHz connections in their rear panels.
So, we can assume that this is a good absolute readout. It reads 9.999860.7 +/- 0.3 Hz. So its 139.1-139.4 Hz lower than 10 MHz. The +/- 0.3 is just a slow drift that I see over the course of 10 minutes.
So, let's say that the analyzer is low by 10 ppm, so the arm length estimates are short by ~0.4 mm. A negligible correction, so there's no need to use atomic clocks to measure our arm lengths. |
328
|
Thu Feb 21 18:29:28 2008 |
John | Summary | General | HP Network Analyser Analyzer |
The HP 4195A network analyser may be broken, measurements below 150MHz are not reliable. Above 150MHz everything looks normal. This may be caused by a problem with its output (the one you'd use as an excitation) which is varying in amplitude in a strange way.
Analyzer |
827
|
Tue Aug 12 12:05:36 2008 |
Yoichi | Update | Computers | HP color printer is back |
I restarted the HP printer server (a little box connected to the HP color laser) so that we can use the HP LaserJet 2550.
After this treatment, the printer spat out a bunch of pages from suspended jobs, many of these were black and white.
I think people should use the black-and-white printer for these kind of jobs, because the color printer is slow and troublesome. |
3831
|
Sun Oct 31 00:19:35 2010 |
rana | Summary | Computer Scripts / Programs | HP3563A netGPIB function |
I've wheeled the old HP audio frequency signal analyzer into the control room to debug the GPIB/python interface. The wireless setup was getting more than 80% packet loss in the office area.
I also noticed that we have multiple and competing copies of the netgpib package installed. Kiwamu is going to merge them soon. Pleae only use the official location:
scripts/general/netgpibdata/
which is also the SVN working copy. Committ all changes periodicallty so that we can share the updated versions between sites. |
3792
|
Wed Oct 27 09:02:29 2010 |
steve | Update | Electronics | HP4195A is NOT fixed |
www.avalontest.com has fixed the 25MHz oscillation. Contact: Jim Burnham 760-536-0191
Actually, NOT FIXED. |
398
|
Mon Mar 24 13:03:54 2008 |
rob | Update | Electronics | HP4195A is back |
Quote: | The swept sine output looks totally normal from 500Mhz to 150MHz (measuring ~220mVrms below 300MHz -- 0dBm), where it abruptly transitions to a distorted waveform which the scope measures as having a frequency of ~25MHz and with 450mVrms (+6dBm). It then transitions again at some other part of the sweep to a cleaner-looking 25MHz waveform with ~1.2Vrms (+15dBm). |
The HP4195A is back from repair. At first, it exhibited exactly the same behaviour for which it was sent in for repair, and which is described above (pillage from entry 337). After speaking with the repair tech on the phone, who tried to imply that the digital scope was tricking us, I plugged the output into our HP8591E spectrum analyzer, just to have firm ammunition to combat the repair guy's looniness. This led to even weirder behaviour, like no output and overload signals on the inputs (with nothing connected). After turning the unit on and off several times, and firmly seating (and screwing in) the DB9 connectors in the back of the unit, it appears to be working properly. Except for a brief glitch as it passes through 150MHz, the swept sine signal now appears normal, both on the scope and in the spectrum analyzer.
Apparently the whole thing is due to a loose connection somewhere in the box, which wasn't actually fixed by the repair, but has at least been temporarily fixed by me stumbling around with a screwdriver and then pushing the power button a couple of times. |
1445
|
Mon Mar 30 15:51:27 2009 |
steve | Update | Electronics | HP4291A left the lab to be repaired |
Eric Gustafson is handling the old HP4291A rehabilitation. Tarac picked both units up today.
March of 2008 Tucker Electronics failed to fix it's intermittent ~25MHz 0.5V oscillation at the swept sine output
See 40m-elog id:398 on 3-24-2008 by Rob Ward
|
10210
|
Wed Jul 16 01:27:01 2014 |
Nichin | HowTo | Computer Scripts / Programs | HP8591E spectrum analyzer remote scan |
The script for running continuous scans on HP 8591E spectrum analyzer is located at scripts/general/netgpibdata/HP8591E_contdScan.py
Give the file HP8591E_param.yml as an argument when running the script. This contains the sweep parameters: Start and stop frequencies along with the place where the plot is stored as a PDF.
The default PDF is located on the Desktop and is named HP8591E_View.pdf Open this using okular and then run the script. (Okular pdf viewer automatically reloads the PDF as and when a new one is created)
What the script does:
1) Set the start and stop frequencies as given in the .yml file
2) Take a data trace and plot it in a PDF.
3) Repeat taking traces and update the PDF. Untill Ctrl+C is pressed (PDF refresh rate: approximately every 3 seconds )
4) Exit smoothly after the keyboard interrupt.
Other details:
This spectrum analyzer is connected to a GPIB - Ethernet controller that is configured as santuzza.martian (192.168.113.109)
I have currently stolen the wireless modem from the spectrum analyzer inside the lab (vanna.martian) and using it for this one. *poker face*
To improve:
Get the plot to show where the two biggest peaks are located. Currently it recognizes only the biggest one.
Possibly have makers on the two peaks.
PFA a sample pdf |
Attachment 1: HP8591E_View.pdf
|
|
10217
|
Wed Jul 16 17:06:41 2014 |
Nichin | Update | Computer Scripts / Programs | HP8591E spectrum analyzer remote scan |
Updated script does the following:
1) Gets the highest 2 peaks
2) Puts a marker on the peaks. Now it looks very similar to the spectrum analyzer display.
3) The refresh rate is still 3 seconds. It might become better if the analyzer was hooked up to a wired martian LAN port rather than the wireless module I am using now.
PFA a sample pdf |
Attachment 1: HP8591E_View.pdf
|
|
10381
|
Wed Aug 13 23:58:49 2014 |
rana | HowTo | Computer Scripts / Programs | HP8591E spectrum analyzer remote scan |
Quote: |
The script for running continuous scans on HP 8591E spectrum analyzer is located at scripts/general/netgpibdata/HP8591E_contdScan.py
|
There was no such script in the directory when I looked today, but I found one called HP8591E. Of course, it didn't run because it hadn't been tested from the scripts directory and pointed to some /users/nichin/ stuff.
I modified a couple of lines and then committed it and the default .YML parameter file to the SVN. It runs and produces plots continuously from the scripts directory.
*** also, as you can see, we have mostly recovered the green beat amplitudes after yesterday's FLL attack on the ALS *** |
Attachment 1: HP8591E_View.pdf
|
|
1324
|
Thu Feb 19 11:51:56 2009 |
steve | Update | MOPA | HTEMP variation is too much |
The C1:PSL-MOPA_HTEMP variation is more than 0.5 C daily
Normally this temp stays well within 0.1 C
This 80 days plots shows that we have just entered this unstable region some days ago.
The control room temp set unchanged at 70 F, actual temp at ac-mon 69-70 with occasional peaks at 74 F
Water temp at chiller repeatedly around 20.6 C at 8 am
This should be rock solid at 20.00C +- 0.02C
|
Attachment 1: 80dhtemp.jpg
|
|
16033
|
Wed Apr 14 23:55:34 2021 |
gautam | Update | Electronics | HV Coil driver assembly |
I've occcupied the southernmost electronics bench for assembling the 4 production version HV coil driver chassis. I estimate it will take me 3 days, and have left a sign indicating as much. Once the chassis assembly is done, I will need to occupy the northernmost bench where bench supplies are to run some functionality tests / noise measurements, and so unless there are objections, I will move the Acromag box which has been sitting there. |
16140
|
Fri May 14 03:29:50 2021 |
Koji | Update | Electronics | HV Driver noise test with the new HV power supply from Matsusada |
I believe I did the identical test with the one in [40m ELOG 15786]. The + input of PA95 was shorted to the ground to exclude the noise from the bias input. The voltage noise at TP6 was measured with +/-300V supply by two HP6209 and two Matsusada R4G360.
With R4G360, the floor level was identical and 60Hz line peaks were less. It looks like R4G360 is cheap, easier and precise to handle, and sufficiently low noise. |
Attachment 1: HV_Driver_PSD.pdf
|
|
15773
|
Wed Jan 20 10:13:06 2021 |
gautam | Update | Electronics | HV Power supply bypassing |
Summary:
Installing 10uF bypass capacitors on the High Voltage power supply line for the HV coil driver circuit doesn't improve the noise. The excess bump around a few hundred Hz is still present. How do we want to proceed?
Details
- The setup is schematically shown in Attachment #1.
- Physically, the capacitors were packaged into a box, see Attachment #2.
- This box is installed between the HVPS and the 2U chassis in which the circuit is housed, see Attachment #3.
- I measured the noise, (using the same setup as shown here to avoid exposing the SR785 input to any high voltage), for a variety of drive currents. To make a direct comparison, I took two sets of measurements today, one with the decoupling box installed and one without.
- The results are shown in Attachment #4. You can see there is barely any difference between the two cases. I've also plotted the expected noise per a model, and the measured Johnson noise of one of the 25kohm resistors being used (Ohmite, wirewound). I just stuck the two legs of the resistor into the SR785 and measured the differential voltage noise. There is a slight excess in the measured Johnson noise compared to what we would expect from the Fluctuation Dissipation theorem, not sure if this is something to be worried about or if it's just some measurement artefact.
Discussion:
So what do we do about this circuit? For the production version, I can make room on the PCB to install two 10uF film capacitors on the board itself, though that's unlikely to help. I think we've established that
- The excess noise is not due to the Acromag or the input Acromag noise filtering stage of the circuit, since the excess is present even when the input to the HV stage is isolated and shorted to ground.
- There was some evidence of coherence between the supply rails and the output of the HV stage (with input isolated and shorted to ground). The coherence had the "right shape" to explain the excess noise, but the maximum value was only ~0.1 (could have been because I was not measuring directly at the PA95's supply rail pins due to space constraints).
- The impedance of 10uF at 100Hz is ~150 ohms. idk what the impedance of the supply pins of the PA95 are at this frequency (this will determine the coupling of ripples in the HVPS output to the PA95 itself.
Do we have any better bipolar HV supply that I can use to see if that makes any difference? I don't want to use the WFS supplies as it's not very convenient for testing.
Not really related directly to this work but since we have been talking about current requirements, I attach the output of the current determining script as Attachment #5. For the most part, having 220ohm resistances on the new HAM-A coil driver boards will lead to ~half the DAC range being eaten up for the slow alignment bias. For things like MC1/MC3, this is fine. But for PRM/SRM/BS, we may need to use 100ohms. Chub has ordered all manner of resistances so we should have plenty of choices to pick from. |
Attachment 1: bypassCaps.pdf
|
|
Attachment 2: IMG_9079.jpg
|
|
Attachment 3: IMG_9078.jpg
|
|
Attachment 4: HVampNoise_driven_chassis.pdf
|
|
Attachment 5: printCoilCurrents.pdf
|
|
16070
|
Thu Apr 22 01:42:38 2021 |
Koji | Summary | Electronics | HV Supply Comparison |
New HV power supply from Company 'M' has been delivered. So I decided to compare the noise levels of some HV supplies in the lab. There are three models from companies 'H', 'K', and 'M'.
The noise level was measured with SR785 via Gautam's HP filter with protection diodes.
'H' is a fully analog HV supply and the indicator is analog meters.
'K' is a model with a LCD digital display and numerical keypad.
'M' is a model with a knob and digital displays.
All the models showed that the noise levels increased with increased output voltage.
Among these three, H showed the lowest noise. (<~1uV/rtHz@10Hz and <50nV/rtHz@100Hz) (Attachment 1)
K is quite noisy all over the measured freq range and the level was <50uV/rtHz. Also the PSD has lots of 5Hz harmonics. (Attachment 2)
M has a modest noise level (<~30uV/rtHz@10Hz and <1uV/rtHz@100Hz)except for the noticeable line noise (ripple). (Attachment 3)
The comparison of the three models at 300V is Attachment 4. The other day Gautam and I checked the power spectrum of the HV coil driver with KEPCO and the output noise level of the coil driver was acceptable. So I expect that we will be able to use the HV supply from Company M. Next step is to check the HV driver noise with the model by M used as the supply. |
Attachment 1: HV_Supply_PSD_H.pdf
|
|
Attachment 2: HV_Supply_PSD_K.pdf
|
|
Attachment 3: HV_Supply_PSD_M.pdf
|
|
Attachment 4: HV_Supply_PSD.pdf
|
|
15552
|
Tue Sep 1 15:39:04 2020 |
gautam | Update | Electronics | HV coil driver oscillations fixed |
Summary:
Increasing the compensation capacitance (470 pF now instead of 33 pF) seems to have fixed the oscillation issues associated with this circuit. However, the measured noise is in excess of the model at almost any frequency of relevance. I believe the problem is due to the way the measurement is done, and that we should re-do the measurement once the unit is packaged in a shielded environment.
Details:
Attachment #1 shows (schematically) the measurement setup. Main differences from the way I did the last round of testing are:
- A 20 ohm series resistor was connected between the high voltage output and ground to simulate the OSEM coil.
- The test was done under driven conditions (i.e. some non-zero input voltage) to better simulate conditions under which the circuit will be used.
- An Acromag XT1541 DAC was used to provide the input signal, to simulate more realistic operating conditions.
- A pomona box filter was used to block out the high voltage DC signal which would otherwise destroy the SR785.
Attachment #2 shows the measurement results:
- Tests were done at a few different drive levels to check if there was any difference.
- The difference between "Idrive=0mA" and "Input Grounded" traces is that in the former, the Acromag DAC was connected but putting out 0V, wheras in the latter, I shorted the input to the circuit ground.
- Because the measurement was done at the output of the PA95, the Johnson noise of 25 kohms (~20 nV/rtHz) was manually summed in quadrature to all the measured traces.
- The plotted spectra were collected in 3 spans, 0-200 Hz, 200Hz-1.8kHz, and 1.8kHz-14.6kHz. The input range was kept constant, so I'm not sure what to make of the discontinuity around 1.8 kHz. Maybe the comb of lines that were being picked up were distorting the spectra for lower frequencies?
- The "Model" is only for the electronics noise of the circuit. The low-pass filtered noise of the Acromag should be totally negligible above 10 Hz, see here. The fact that there is little difference between the "Idrive=0mA" and "Input Grounded" traces further supports this claim.
- The diodes in the Pomona box are also unlikely to be the culprit, because with this Pomona box connected to the SR785 and its input terminated with 50ohms, I don't see the comb of spectral lines.
I didn't capture the data, but viewing the high voltage output on an Oscilloscope threw up no red flags - the oscillations which were previously so evident were nowhere to be seen, so I think the capacitor switch did the trick as far as stability is concerned.
There is a large excess between measurement and model out to a few kHz, if this is really what ends up going to the suspension then this circuit is useless. However, I suspect at least part of the problem is due to close proximity to switching power supplies, judging by the comb of ~10 Hz spaced peaks. This is a frequent problem in coil driver noise measurements - previously, the culprit was a switching power supply to the Prologix GPIB box, but now a Linear AC-DC converter is used (besides, disconnecting it had no visible effect). The bench supplies providing power to the board, however, is a switching supply, maybe that is to blame? I think the KEPCO supplies providing +/-250 V are linear. I tried the usual voodoo of twisting the wires used to receive the signal, moving the SR785 away from the circuit board etc, but these measures had no visible effect either.
Conclusions:
The real requirement of this circuit is that the current noise above 100 Hz be <1pA/rtHz. This measurement suggests a level that is 5x too high. But the problem is likely measurement related. I think we can only make a more informed conclusion after shielding the circuit better and conducting the test in a more electromagnetically quiet environment. |
Attachment 1: testSetup.pdf
|
|
Attachment 2: HVampNoise_driven.pdf
|
|
15636
|
Thu Oct 22 11:14:47 2020 |
gautam | Update | Electronics | HV coil driver packaged into 2U chassis |
I packaged the HV coil driver into a 2U chassis, hoping for better shielding from pickup. There is still considerable excess noise in measurement vs model around 100 Hz, see Attachment #1. The projected displacement noise from this noise contribution is shown in Attachment #2 - I've also plotted the contribution from the 4.5kohm (planned value for fast path series resistance) for comparison. Attachment #3 has some photos of the measurement setup so if someone sees some red flags, please let me know.
- The noise was measured with the output load connected to a 20ohm load resistor, to simulate an OSEM.
- The input signal was driven with an Acromag, to try and mimic the actual operating conditions as closely as possible (although the fast path input was left unconnected).
- The KEPCO switching HV power supplies were used to power the unit.
I've run out of ideas to try and make the measurement cleaner - the presence of the rather prominent power line harmonics suggests that this is still not perfect, but what more shielding can we implement? I have to make the measurement on the circuit side of the 25 kohm series resistor, so I am using some Pomona minigrabbers to clip onto the leg of the wirewound resistor (see photos in Attachment #3), so that's not great maybe, but what's the alternative?
So if this is truly the noise of the circuit, then while it's an improvement on the current situaiton, it's unsatisfying that such a simple circuit can't match the design expectations. But how do we want to proceed? |
Attachment 1: HVampNoise_driven_chassis.pdf
|
|
Attachment 2: HVampNoise_dispUnits.pdf
|
|
Attachment 3: D1900163_measurementSetup.zip
|
15638
|
Thu Oct 22 13:04:42 2020 |
rana | Update | Electronics | HV coil driver packaged into 2U chassis |
what is the noise level before the HV stage? i.e. how well is the acromag noise being filtered? |
15639
|
Thu Oct 22 22:01:53 2020 |
gautam | Update | Electronics | HV coil driver packaged into 2U chassis |
It's not so easy to directly measure this I think, because the filtering is rather aggressive. Attachment #1 shows the measured transfer function (dots) vs the model and Attachment #2 shows the noise. I think this checks out - but I can't definitively rule out some excess noise at 100 Hz from this stage. Because the gain of the HV stage is x31, we'd need a preamp with better than 1nV/rtHz to directly measure the noise I guess. The Acromag noise model in Attachment #2 is based on a measurement I describe here.
Quote: |
what is the noise level before the HV stage? i.e. how well is the acromag noise being filtered?
|
|
Attachment 1: DACnoiseFilterGain.pdf
|
|
Attachment 2: DACnoiseFilterNoises.pdf
|
|
15640
|
Fri Oct 23 09:03:43 2020 |
anchal | Update | Electronics | HV coil driver packaged into 2U chassis |
Andrew made a battery-powered 0.7 nVrtHz input-referred noise pre-amplifier for gain of 200. That might help you.
Quote: |
we'd need a preamp with better than 1nV/rtHz to directly measure the noise I guess.
|
RXA: 0.7 nV is OK if you're not interested in low noise measurements. Otherwise, we have the transformer coupled pre-amp from SRS which does 0.15 nV/rHz and the Rai Weiss FET amp which has 0.35 nV for high impedance sources. |
16368
|
Thu Sep 30 14:13:18 2021 |
Anchal | Update | LSC | HV supply to Xend Green laser injection mirrors M1 and M2 PZT restored |
Late elog, original date Sep 15th
We found that the power switch of HV supply that powers the PZT drivers for M1 and M2 on Xend green laser injection alignment was tripped off. We could not find any log of someone doing it, it is a physical switch. Our only explanation is that this supply might have a solenoid mechansm to shut off during power glitches and it probably did so on Aug 23 (see 40m/16287). We were able to align the green laser using PZT again, however, the maximum power at green transmission from X arm cavity is now about half of what it used to be before the glitch. Maybe the seed laser on the X end died a little. |
16206
|
Wed Jun 16 19:34:18 2021 |
Koji | Update | General | HVAC |
I made a flow sensor with a stick and tissue paper to check the airflow.
- The HVAC indicator was not lit, but it was just the blub problem. The replacement bulb is inside the gray box.
- I went to the south arm. There are two big vent ducts for the outlets and intakes. Both are not flowing the air.
The current temp at 7pm was ~30degC. Max and min were 31degC and 18degC.
- Then I went to the vertex and the east arm. The outlets and intakes are flowing. |
Attachment 1: HVAC_Power.jpeg
|
|
Attachment 2: South_Arm.jpeg
|
|
Attachment 3: South_End_Tenperature.jpeg
|
|
Attachment 4: Vertex.jpeg
|
|
Attachment 5: East_Arm.jpeg
|
|
15222
|
Mon Feb 24 08:36:32 2020 |
Chub | Update | General | HVAC repair |
The HVAC people replaced a valve and repaired the pneumatic plumbing on the roof air handler. Temperature has been stable during the day since Thursday. If anyone is in the control room during the evening, please make a note of the temperature.
Chub |
4891
|
Mon Jun 27 16:57:06 2011 |
steve | Update | Photos | Haixing is back |
He has moved the levitation stuff for his surf student to Jan's lab in W-Bridge. |
Attachment 1: P1070914.JPG
|
|
4489
|
Tue Apr 5 19:54:39 2011 |
Koji | Summary | Green Locking | Hamamatsu S3399 test |
Since last Friday I have been testing the broadband RF photodetector in order to figure out the capability of S3399 with the similar circuit as Matt's BBPD
We also like to figure out if it has sufficient performance for the 40m green locking.
The circuit diagram is shown in the first attachment. The RF amplifier is attached at the diode while the reverse bias voltage is applied at the other side of the diode. The amplifier's input impedance is used as the transimpedance resister. Note that the bandwidth of this configuration is limited by the RC filter that consists of the junction capacitance of the diode, the series resistance of the diode, and the transimpedance resister. This cut off freq is in general lower than that cut off obtained with the usual transimpedance amplifier which has the readout resister at the feedback path of the opamp.
The transfer function of the PD is measured using Jenne's laser. At the reverse bias voltage of 30V, the -3dB bandwidth of 178MHz was obtained. This is quite high bandwidth for the most of the applications at the 40m.
Because of the low transimpedance the low-noise level of the RF amplifier is very crucial. Recently we can obtain an ultra low noise RF amplifier like Teledyne Cougar AC688 which has the NF of 0.9dB with the bandwidth between 10MHz - 600MHz. Next step will be to obtain this kind of amplifier to test the noise performance.
|
Attachment 1: S3399_test_110405.png
|
|
Attachment 2: S3399_test_110405.pdf
|
|
651
|
Wed Jul 9 12:42:14 2008 |
John | Update | Locking | Hand off to RF CARM |
Rob, Yoichi, John
Last night we were able to reduce the CARM offset to around 80. This was achieved by increasing the DARM gain and
switching to AS_I when AS_Q went bad. This is probably a temporary solution, we will probably switch to DC readout
for DARM as we bring the arms on resonance.
Having reduced the arm offset enough to get us into the linear region of the RF_CARM signal (POX_I) we worked on
analogue conditioning of this signal to allow us to hand over. Lock was maintained for over 20 minutes as we did
this work.
We were able to partially switch over both the frequency and length paths to this new signal before losing lock. |
Attachment 1: LongLock080709.png
|
|
15584
|
Sat Sep 19 18:46:48 2020 |
Koji | Update | General | Hand soap |
I supplied a bottle of hand soap. Don't put water in the bottle to dilute it as it makes the soap vulnarable for cotamination. |
16
|
Thu Oct 25 23:35:36 2007 |
waldman | Other | OMC | Hang the OMC! |
[Pinkesh, Sam]
We tried, convicted and hung the OMC today. The OMC was found guilty of being overweight, and unsymmetrically balanced. The unsymmetry was kind of expected and was corrected with a hefty stack of counterweights positioned over the counterweighting holes. The stacks will be measured at some future date and correctly sized objects machined. The overweightness showed up when the level hanging breadboard was about 5 mm low. This showed up in the board height above the table as well as the OSEM flag positions within their holes. The problem was remedied with a liposuction of the intermediate mass. We removed both small vertical cylinder weights that Chris added, and then we removed the heavy steel transverse weight that can be used to adjust the tip around the long axis (I forgot what its called).
The top of the breadboard ended up about 154 mm off the table. The breadboard is 39 mm thick, and the optics are centered (30 - 12.7) = 17.3 mm below the surface for a as hanging beams height of 154 -39 - 17.3 = 97.7 mm or about an 0.150 inches lower than we were aiming for. Can I get a refund?
We screwed up in multiple ways:
- The slotted disks that capture the wires do not have the alignment bore used to center the wire in the hole
- We didn't correctly route the far field QPD cable so it runs funny
- We didn't have a tool which could be used to get two of the DCPD preamp box mounting screws (which are M3's chub!)
- We don't have the cable clamps to tie off the electrical cables to the intermediate mass
- We don't have any of the cabling from the OMC-SUS top to the rack so we can't test anything
- We haven't uploaded pretty pictures for all to see
We left the OMC partially suspended by the OMC-SUS and partly resting on the installation lab jacks which are currently acting as EQ stops. After we fix the cabling we will more permanently hang it. PS, It looks like the REFL beam extraction will be tricky so we need to get on that.... |
Attachment 1: IMG_1483.jpg
|
|
Attachment 2: IMG_1481.jpg
|
|
21
|
Sat Oct 27 19:00:44 2007 |
waldman | Configuration | OMC | Hanging, locked OMC with REFL extracted. |
I got the OMC locked to the fiber output today. It was much more difficult than I expected and I spent about 30 minutes or so flailing before stopping to think. The basic problem is that the initial alignment is a search in 4-dimensional space and there is naturally only one signal, the reflected DC level, to guide the alignment. I tried to eyeball the alignment using the IR card and "centering" the beams on mirrors, but I couldn't get close enough to get any light through. I also tried to put a camera on the high reflector transmission, but with 1.5 mW incident on the cavity, there is only 1.5 microwatts leaking through in the best case scenario, and much, much less during alignment.
I resolved the problem by placing a high reflector on a 3.5 inch tall fixed mount and picking off the OMC transmitted beam before it reaches the DC diodes. I took the pickoff beam to a camera. The alignment still sucked because even though the beam cleanly transmitted the output coupler, it wasn't anywhere close to getting through the OTAS. To resolve this problem, I visually looked through the back of M2 at M1 and used the IR card to align the beam to the centers of each mirror. That was close enough to get me fringes and align the camera. With the camera aligned, the rest was very easy.
I restored the PDH setup we know and love from the construction days and locked the laser to the OMC with no difficulty. The laser is in Rana's lab so I send the +/- 10V control signal from the SR560 down a cable to 058E where it goes into the Battery+resistor box, the Throlabs HV amplifier, and finally the FAST channel of the NPRO. BTW, a simple experiment sows that about 35 +/- 3 V are required to get an FSR out of the NPRO, hence the Thorlabs HV. The EOM, mixer, splitter, etc is on the edge of the table.
With this specific OMC alignment, ie. the particular sitting on EQ stops, it looks like all of the ghost beams have a good chance of coming clear. I can fit a 2 inch optic in a fixed mount in between the end of the breadboard and the leg of the support structure. A picture might or might not be included someday. One of the ghost beams craters directly into the EQ stop vertical member. The other ghost barely misses M2 on its way down the length of the board. In its current configuration, the many REFL beam misses the leg by about 1.5 inches. |
4262
|
Tue Feb 8 16:04:58 2011 |
josephb | Update | CDS | Hard coded decimation filters need to be fixed |
[Joe, Rana]
Filter definitions for the decimation filters to epics readback channels (like _OUT16) can be found in the fm10Gen.c code (in /opt/rtcds/caltech/c1/core/advLigoRTS/src/include/drv).
At the moment, the code is broken for systems running at 32k, 64k as they look to be defaulting to the 16k filter. I'd like to also figure out the notation and plot the actual filter used for the 16k.
Rana has suggested a 2nd order, 2db ripple low pass Cheby1 filter at 1 Hz.
51 #if defined(SERVO16K) || defined(SERVOMIXED) || defined(SERVO32K) || defined(SERVO64K) || defined(SERVO128K) || defined(SERVO256K)
52 static double sixteenKAvgCoeff[9] = {1.9084759e-12,
53 -1.99708675982420, 0.99709029700517, 2.00000005830747, 1.00000000739582,
54 -1.99878510620232, 0.99879373895648, 1.99999994169253, 0.99999999260419};
55 #endif
56
57 #if defined(SERVO2K) || defined(SERVOMIXED) || defined(SERVO4K)
58 static double twoKAvgCoeff[9] = {7.705446e-9,
59 -1.97673337437048, 0.97695747524900, 2.00000006227141, 1.00000000659235,
60 -1.98984125831661, 0.99039139954634, 1.99999993772859, 0.99999999340765};
61 #endif
62
63 #ifdef SERVO16K
64 #define avgCoeff sixteenKAvgCoeff
65 #elif defined(SERVO32K) || defined(SERVO64K) || defined(SERVO128K) || defined(SERVO256K)
66 #define avgCoeff sixteenKAvgCoeff
67 #elif defined(SERVO2K)
68 #define avgCoeff twoKAvgCoeff
69 #elif defined(SERVO4K)
70 #define avgCoeff twoKAvgCoeff
71 #elif defined(SERVOMIXED)
72 #define filterModule(a,b,c,d) filterModuleRate(a,b,c,d,16384)
73 #elif defined(SERVO5HZ)
74 #else
75 #error need to define 2k or 16k or mixed
76 #endif |
8935
|
Mon Jul 29 21:57:45 2013 |
gautam | Configuration | endtable upgrade | Hardware installed at 1X9 |
The following hardware has been installed on rack 1X9;
- KEPCO high voltage power supply (kept in a plastic box at the bottom of the rack, with the 3m SMA cable carrying 100V running along the inside side wall of the rack). The HV supply has not been connected to the driver board yet.
- AI board D000186 installed in top eurocrate. The board does not seem to fit snugly into the slot, so I used a longish screw to bolt the front panel to the eurocrate.
- PZT driver board D980323 installed in top eurocrate adjacent to the AI board.
- Six 11m SMB-LEMO cables have been laid out from 1X9 to the endtable. I have connected these to the PZT driver board, but the other end (to the PZTs) is left unconnected for now. They have been routed through the top of the rack, and along the cable tray to the endtable. All the cables have been labelled at both ends.
I have also verified that the AI board is functional in the eurocrate by using the LEMO monitoring points on the front panel.
The driver boards remain to be verified, but this cannot be done until we connect the HV supply to the board.
|
2826
|
Wed Apr 21 16:48:38 2010 |
josephb | Update | CDS | Hardware update |
Alberto and myself went to downs and acquired the 3rd 4x processor (Dual core, so 8x cores total) computer. We also retrieved 6 BIO interface boards (blue front thin boxes), 4 DAC interface boards, and 1 ADC interface boards. The tops have not been put on yet, but we have the tops and a set of screws for them. For the moment, these things have been placed behind the 1Y6 rack and under the table behind the 1Y5 rack
.
The 6 BIO boards have LIGO travelers associated with them: SN LIGO-S1000217 through SN LIGO-S1000222. |
4374
|
Thu Mar 3 18:32:33 2011 |
Larisa Thorne | Update | Electronics | Harmonic distortion calculations for RF distribution box |
Finished calculations for harmonic distortion at each of the 10 outputs of the RF distribution box. The diagram can be found on Suresh's post http://nodus.ligo.caltech.edu:8080/40m/4342
THD calculation consisted of gather data on the dBm at harmonics of the fundamental frequency. These dBm values were converted into units of power and plugged into the appropriate THD equation pulled from Wikipedia: 
On the table, the number 1-6 correspond to the harmonic number of the input frequency used. For example, the first five PD's listed used an 11MHz source, while the second set of five PD's listed used a 55MHz source. Values listed under certain harmonics are dBm measurements at the corresponding frequency. The P-subscript values are essentially the dBm measurements converted to units of power (Watts) for ease of calculation in the equation above. THD is then calculated using these power units; I have converted the ratios to percentages.
It should be noted that as with all THD calculations, the more data points collected, the more precise the THD % will be.
By the way, the outputs on the physical RF distribution box for REFL165 and AS165 are actually labeled as REFL166 and AS166. |
Attachment 1: RFdistribboxcalcs.pdf
|
|
4377
|
Fri Mar 4 09:47:46 2011 |
Suresh | Update | Electronics | Harmonic distortion calculations for RF distribution box |
Fast work indeed! It would be nice if we could have the following details filled in as well
a) A short title and caption for the table, saying what we are measuring
b) the units in which this physical quantity is being measured.
It is good to keep in mind that people from other parts of the group, who are not directly involved in this work, may also read this elog. |