40m QIL Cryo_Lab CTN SUS_Lab TCS_Lab OMC_Lab CRIME_Lab FEA ENG_Labs OptContFac Mariner WBEEShop
  ATF eLog, Page 7 of 57  Not logged in ELOG logo
ID Date Author Type Categoryup Subject
  1931   Wed Jun 10 13:48:22 2015 KateComputingComputingWS1 log in problem

Zach gave me the controls password for ws1 and I just tried logging in. The following error message (see attachment) shows up. Suggestions?

Attachment 1: IMG_0803.JPG
IMG_0803.JPG
  1933   Fri Jun 12 12:23:14 2015 KateComputingComputingWS1 log in problem

Nicolas took a look at this with me. We turned the computer off and attempted to reboot it, but it did not boot. Looking in the BIOS menu, no hard drive is found. I've ordered a new one (Samsung SSD 250MB) and will install the latest version of Ubuntu on it next week when it arrives. 

Quote:

Zach gave me the controls password for ws1 and I just tried logging in. The following error message (see attachment) shows up. Suggestions?

 

  2171   Sun Aug 27 21:55:14 2017 awadeComputingComputingMapping the ATF/PSL/TCS lab

I ran nmap over the local ATF network to find out what was connected and to grab MAC addresses. 

I've updated the lab network infrastructure schematic and table in the ATF wiki here: https://nodus.ligo.caltech.edu:30889/ATFWiki/doku.php?id=main:resources:computing:network:menu

In the last month there were a few changes to the top level router coming into the lab.  The main one is that DHCP has been enabled for IP addresses 10.0.1.150 and above.  Any computer connected to the network adhoc will simple be allocated an address above 150.  This is great for laptops, thin front end computers and test rigs but probably should not be the state of permanent lab computers. 

Also there were a mixer of things plugged into the top level 10.0.1.1 router and randomly into the wall.  These are now all directed through the same node.

Some issues:

  • There is one loose 3com network switch that has unmoored itself and taken on a floating DHCP IP address. This needs to be corrected pronto, however, its not clear if its the PSL lab router or the TCS one. The nmap scan is showing only two 3com routers, that means one is missing from the network or not responding to pings (a config option maybe?).  The DHCP router needs to be nailed down so we can find the missing router and also give it an IP address.
  • Some IP addresses have been allocated manually into the >150 IP address zone.  These may cause conflicts down the track and should be allocated other sensible IPs
  • nmap seems to be skipping  over some DHCP IPs including awade's and Craigs mac laptops.  So its likely that some machines on the network are still being missed.  A bash ping script should maybe be written to catch the missing machines.
  • There are unexplained computers on the network (probably in the TCS lab) that need to be added to the ATF wiki

 

  2172   Mon Aug 28 17:11:47 2017 awadeComputingComputingMapping the ATF/PSL/TCS lab

So the mystery 3com router on a floating DHCP address was actually the one in the TCS lab.  I've given it an IP now listed on the ATF wiki.

The 3com switch that was unaccounted for is actually the one in the PSL lab.  I've tried all the IP addresses it should be and it is compleatly unresponsive.  Local devices that have been configered with manual IPs are accessing the wider network fine but anything set find an IP via DHCP is failing to get an IP address.  We can't chage any of the settings unless we know the IP of the router.

Jon is similtinously working on getting a gateway PC up and running, but the only change there is that the main 10.0.1.1 router has been disconnected from the wall. I'll try running a deeper nmap scan over the PSL side of the network to find this 3com router.  

  2173   Tue Aug 29 20:59:11 2017 awade, JonLab InfrastructureComputingSetting up a gateway PC

Jon has been working on getting a gateway PC set up again so that we can ssh into the lab from outside the ATF network.  

The old gateway computer has died. It looks like a dead power supply. The computer is an old Penguin tower box and is ~10 years old, its probably still good but is a lot of work to find a power supply on line to replace.  Larry Wallace didn't have any power supplies so he gave me a low end dell computer and a spare Ethernet card/usb dongle to use instead.  

Jon installed scientific linux and was trying to pass traffic through the computer from the outside world (from one Ethernet port to the other).  From what I can gather he was able to get pings in and out to the internet but there was a problem with finding a way to configure DNS settings that would allow regular internet use resolving www requests. There isn't really enough support for these types of tasks for the Scientific Linux distribution, so instead we have install Debian and will try to configure that. 

---

I'm now not sure that we want a computer firewall and all the configuration difficulty that entails.  Its possible to configure the Linksys router to forward certain port requests at the outward facing IP address so that they get redirected to ports of particular IP addresses internal to the network. This can be found under the Applications & Gaming tab at the gateway router (10.0.1.1), under UPnP Forwarding ports requested from outside the network can be redirected machines inside the network.  So, for example an outside ssh request to port 1234 can be redirected to port 4321 on machine ip 10.0.1.123.  This is basically what we want, a single machine from which we can ssh to any of the lab computers for offsite maintenance and operation

So to access the ATF subbasement computers you need to know the labs outward facing IP address <IP>, port <port> and password to the gateway machine.  Then simply run

ssh -Y controls@<IP> -p <port>

The -Y here is for window forwarding, you'll need xQuartz if you are on a mac.

These values (including password) can be found in the here in LIGO shared secrets: https://secrets.ligo.org/secrets/170/

If you can't see it you might need to ask someone in person to add you to the view list.

---

Test

  2175   Wed Sep 6 11:50:12 2017 JonLab InfrastructureComputingGateway PC set up

Jon's Edits to Andrew's Setup of the Linksys Router

Andrew is right that the Linksys router (10.0.1.1) can be configured to do everything we want from a gateway, namely providing password-protected ssh access into the LAN machines from the outside while blocking all other ports. I made some minor changes to Andrew's initial setup to balance security with ease of accessibility.

First, I made the Caltech-assigned IP address (131.215.115.216) discoverable on the ligo.caltech.edu network. This makes the gateway pingable, which is useful for determining whether the LAN is down. Note that this gateway is still only discoverable from inside the ligo.caltech.edu network, not from the outer Internet.

Second, I enabled the default port for SSH communications, port 22. I think this is fine security-wise because, again, the machine is only discoverable from within the ligo.caltech network and access is password-protected.

To connect to one of the LAN machines from another machine on the ligo.caltech.edu network with X11 graphics forwarding, you can add this script to your .bashrc file:

connect_onsite()
{
     ssh -Xt controls@<IP> \
     ssh -X controls@10.0.1.XX
}

where 10.0.1.XX is the address of the machine on the local network. You'll be prompted twice for a password, first for the gateway and second for the inside machine.

To connect from outside the ligo.caltech.edu network, forward the connection through a network machine (e.g., I use my office desktop) by adding the line:

connect_offsite()
{
     ssh -Xt USERNAME@MACHINE.ligo.caltech.edu \
     ssh -Xt controls@<IP> \
     ssh -X controls@10.0.1.XX
}
  2176   Wed Sep 6 11:51:40 2017 JonLab InfrastructureComputingGateway PC set up

Jon's Edits to Andrew's Setup of the Linksys Router

Andrew is right that the Linksys router (10.0.1.1) can be configured to do everything we want from a gateway, namely providing password-protected ssh access into the LAN machines from the outside while blocking all other ports. I made some minor changes to Andrew's initial setup to balance security with ease of accessibility.

First, I made the Caltech-assigned IP address (131.215.115.216) discoverable on the ligo.caltech.edu network. This makes the gateway pingable, which is useful for determining whether the LAN is down. Note that this gateway is still only discoverable from inside the ligo.caltech.edu network, not from the outer Internet.

Second, I enabled the default port for SSH communications, port 22. I think this is fine security-wise because, again, the machine is only discoverable from within the ligo.caltech network and access is password-protected.

To connect to one of the LAN machines from another machine on the ligo.caltech.edu network with X11 graphics forwarding, you can add this script to your .bashrc file:

connect_onsite()
{
     ssh -Xt controls@<IP> \
     ssh -X controls@10.0.1.XX
}

where 10.0.1.XX is the address of the machine on the local network. You'll be prompted twice for a password, first for the gateway and second for the inside machine.

To connect from outside the ligo.caltech.edu network, forward the connection through a network machine (e.g., I use my office desktop) by adding the line:

connect_offsite()
{
     ssh -Xt USERNAME@MACHINE.ligo.caltech.edu \
     ssh -Xt controls@<IP> \
     ssh -X controls@10.0.1.XX
}
  2181   Thu Sep 21 12:25:05 2017 awadeComputingComputingRebuild ws1 in ATF

I wanted another Debian computer around the lab to install LIGO tools on.  ws1 was running Ubuntu 14 which is ok but less supported for all these LIGO CDS tools.  Given that nobody uses this computer and there appears to be nothing on it I used this as a new Debian 8 box.

Same IP address 10.0.1.21 and same user name. As a bonus it now has an os that is more up to date.

  2182   Wed Sep 27 12:41:57 2017 Jon RichardsonLab InfrastructureComputingTCS Subnet Back Up

The TCS lab did not get Internet back after the the ATF lab pipe work was done. I traced the problem back to the fiber connecting the TCS switch to the main switch in the ATF lab next door. It was plugged into the wrong slot. If anyone has network problems in other labs, check the fibers in the main switch because many of them are unlabelled.

  2183   Sun Nov 5 15:12:06 2017 ranaSummaryComputingdiaggui on Mac laptops

Its now possible to install DTT (aka diaggui) ont your personal laptop using macports. This would allow you to access data from the LIGO sites, the 40m NDS, as well as the W. Bridge sub-basement labs (once Jon and I set up a way to move the data to the CIT cluster and NDS it).

as usual with MacPorts, YMMV, but this way works for me on more than one machine:

  1. sudo port install gds (this starts installing a huge pile of dependencies and may take a long while - you may need a charger)
  2. It will install root5 and then while getting the gds package, it displays the error:
  3. Error: Failed to archivefetch gds: root5 must be installed with +python27.
  4. This is because the MacPorts package for GDS is misconfigured. So at this point you do:
  5. sudo port uninstall root5
  6. sudo port install root5 +cocoa+gcc6+graphviz+gsl+http+minuit2+opengl+roofit+soversion+ssl+tmva+xml+python27
  7. sudo port install gds

This works on my old laptop (El Capitan), but so far not on Sierra.

After that you can run diaggui to open up your old .xml files, look back at old data, etc.

  2200   Sun May 27 16:10:27 2018 awadeComputingComputingAccessing 3com switch from screen on mac

Somehow I lost access to the 3com switch in the PSL lab.  The default config IP was lost and from there we have been unable to edit its settings.

The 3com model 2920-SFP switches don't have a reset button.  They can only be reset from the serial port.  Larry Wallace lent me a USB serial to RJ45 cable but I have been unable to obtain a connection through a terminal PuTTY session until now.

The instructions for resetting the router can be found HERE

I found that serial connections through MacOs terminal 'screen' utility just returned random characters. It turns out that the problems with the USB serial connection were the baud rate. In this case it must be set to 38400

Connecting to 3com routers with USB converter

To launch a serial USB session with a converter device. Run

> ls /dev/*usb*

then plug in the USB converter device (USB to serial DB9 + DB9 to RJ45) and run the above command again to see what appears when the device is initialized. You should see something like /dev/cu.usbserial-xyz appear, where cu.usbserial-xyz is serial converter you want to connect to.

Then launch screen with

> screen -L /dev/cu.usbserial-A4007BdM 38400 -L

Power cycle the 3com router and it should return a bunch of sensible startup dialog like

Starting......

    ************************************************************************
    *                                                                      *
    *              3COM 2920-SFP Plus BOOTROM, Version 113                 *
    *                                                                      *
    ************************************************************************
    Creation Date       : Jun  1 2009
    CPU L1 Cache        : 32KB
    CPU Clock Speed     : 333MHz
    Memory Size         : 128MB
    Flash Size          : 128MB
    CPLD Version        : 002
    PCB Version         : Ver.B
    Mac Address         : 002473850035
Press Ctrl-B to enter Extended Boot menu...0

 

As instructed hit Control-b (Not command-b) then follow the instructions in the LINK above. Note that where they say "<blank>" for password they actually mean enter nothing.

From there you can configure IP addresses etc from command line.  However, it is probably just easier to let the top level router DHCP allocate an IP address and then do it directly from the browser.

YOU MUST SET A NEW ADMIN PASSWORD

  2201   Tue May 29 16:12:48 2018 awadeLab InfrastructureComputingUpgraded top level QIL/PSL/TCS lab's router

The old LinkSys router has been hanging every 48 hours or so. Also it is fairly slow.  I've purchased a tp-link TL-R600VPN router to replace it.  

I put the details of the configuration on the wiki atf Computing Network page. And posted the admin username and password physically on the unit. 

Its important not to open up remote access to configuration settings for now (see security disclosure 2018/05/VPNFilter).  Once a firmware patch fixes this we should be able to configure the router to give VPN access to the lab.  For now you can access the lab through the ussual ssh method on the ussual ports, see the wiki for details.

 

---

FYI, I have hard reset the router, changed the password and updated the firmware since yesterday.

Attachment 1: IMG_3440.JPG
IMG_3440.JPG
  2317   Thu Mar 28 18:16:59 2019 JonUpdateComputingCymac assembly started

This afternoon Chris and I installed the ADC and DAC cards in fb4.

  • We connected them to the timing card adapters (left external to the computer chassis for now).
  • We found fb4 to be running Debian 8 so first attempted to upgrade to 9, as that is the version supported by Jamie's cymac binaries.
  • However, we encountered problems during the upgrade, apparently with gdm (the linux GUI). 
  • By switching to consol mode and killing gdm, were able to proceed to the point of updating all the packages.
  • It completed successfully, but then the system failed to reboot, even in recovery mode.
  • During boot, the advligo-rts kernel fails to start, and then boot hangs completely at the point the graphical interface is started.

We may want to start with a fresh install of Debian 9 and just reinstall the LIGO binaries.

  2319   Mon Apr 1 11:03:24 2019 JonUpdateComputingCymac assembly started

I know there is some CTN slow channel data on the disk. Is it at all possible to boot so that can be recovered?

Quote:

This afternoon Chris and I installed the ADC and DAC cards in fb4. We connected them to the timing card adapters (left external to the computer chassis for now).

We found fb4 to be running Debian 8 so first attempted to upgrade to 9, as that is the version supported by Jamie's cymac binaries. However, we encountered problems during the upgrade, apparently with gdm (the linux GUI). By switching to consol mode and killing gdm, were able to proceed to the point of updating all the packages. It completed successfully, but then the system failed to reboot, even in recovery mode. During boot, the advligo-rts kernel fails to start, and then boot hangs completely at the point the graphical interface is started.

We may want to start with a fresh install of Debian 9 and just reinstall the LIGO binaries.

 

  2705   Wed Dec 31 15:59:59 1969 StephenDailyProgressCryo vacuum chamberRadiative Cooling of Si Mass, with worse inner shield inner surface emissivity - retry run was successful

This post will host plots and trends from this radiative cooling run (QIL/2704).

Preliminarily, it looks like the reconfiguration to remove a hardware mistake or two led to a healthier run. The comparison below clarifies the two runs:

  • QIL/2702 - conductive link between inner shield and outer shield (twisted pair from an RTD lead accidentally clamped); possibly another conductive link between outer shield and baseplate (outer shield more wobbly than usual on spacers)
    • this data set should only be used to study the impact of a known conductive link between inner and outer shields.
    • this run demonstrates that there will be more effective, faster cooling if the outer shield is conductively cooled!
  • QIL/2704 - resolved above mistakes!
    • this data set may be used to gain understanding of the impact of emissivity changes to the inner surface of the inner shield.
    • may be compared to QIL/2695, a run that is equivalent except with a higher emissivity inner surface of the inner shield

Run ended with cryocooler shutdown at 12:27 pm (actual duration just under 92 hours). System will warm up with pumps on for the rest of the break, unless I am inspired to come in and run one of the next intended runs discussed in QIL/2704. I did not run any heat input test for this data set, as I am not planning to come in frequently enough to monitor the heating safely.

Data:

Attachment 1 compares QIL/2704 (solid) to QIL/2702 (dashed). As expected, the outer shield temperature from the latter run stays warm since the conductive short was resolved. Due to the reduction of the inner shield's thermal load, the inner shield is able to cool faster and plateau at a colder temperature. As Stephen pointed out, however, the test mass is not cooled as efficiently compared to when the outer shield was conductively cooled.

Fitting Results:

Attachment 2 is a current model diagram of the various components being considered, and their thermal couplings. Attachment 3 plots the fitted model (dashed) over the temperature data (solid). The fit parameters were the following emissivities: aluminum foil, rough aluminum, and aquadag. Notes from the fit:

1. With the conductive shorting of the outer shield resolved, the model (which considers only radiative cooling of the OS) is well fit to the OS temperature data

2. The inner shield model is missing some key term(s) affecting its time constant and steady state temperature.

3. The above error propagates to the test mass model (I believe). 

Given these caveats, the fit results are as follows: aquadag e = 0.92, Al foil e = 0.04, rough Al e = 0.19. These all initially seem reasonable, and I'm happy to see that the aquadag emissivity is higher than previously estimated.

Next steps:

1. Separate the cold plate from the inner shield, and model their conductive and radiative link. Also model the radiative link between the cold plate and the test mass.

2. Cover the test mass in foil (to best of our ability) to refine the radiative link between the test mass and inner shield. Doing so will mean both elements have the same emissivity, so there is only one unknown parameter.

Attachment 1: cooldown_12-21_vs_12-10.pdf
cooldown_12-21_vs_12-10.pdf
Attachment 2: Megastat_Heat_Load_Sketch.png
Megastat_Heat_Load_Sketch.png
Attachment 3: 12_21_cooldown_fit.png
12_21_cooldown_fit.png
  2261   Wed Nov 14 16:49:47 2018 RahulUpdateCryo vacuum chamberassembly

The top (seen with several threaded holes along with 16 through holes) and bottom (only 2 threaded holes for lifting and 16 through holes) plate for the vacuum chamber has arrived and I have moved them into the QIL optical bench/table. Using some aluminum struts/bosch, I am making a simple 3’’ tall spacer on top of which the bottom plater will be resting. After wiping them with solvents, I will start assembling the chamber and the plates.

Attachment 1: Bottom_plate.jpg
Bottom_plate.jpg
Attachment 2: top_plate.jpg
top_plate.jpg
  2267   Tue Dec 4 15:56:29 2018 RahulDailyProgressCryo vacuum chamberO-ring which fits

The viton O-ring shipped by Nor-Cal fits the chamber groove, given below is the correct specification for future reference. I am buying few more for spares.

2-473 Viton , ID 23.940'' OD 24.490'' Width 1/4''

Attachment 1: IMG_0170.jpg
IMG_0170.jpg
Attachment 2: IMG_0171.jpg
IMG_0171.jpg
  2269   Wed Dec 5 16:18:50 2018 RahulDailyProgressCryo vacuum chamberbottom plate

Aaron and Rahul - The bottom plate of the chamber was upside down (Gabriele and I did it as we were trying out few things during assembly last week). Now, the bottom plate has been inverted (using crane and trolley) and is ready for the chamber to be brought in. I am giving the chamber and the plates a thorough wipe (speckles of dust easily visible) and the grooves for the O-ring also looks slightly dusty. Probably I should get clean plastic sheets to cover the vessel when the top lid is open.

  2270   Wed Dec 5 16:49:50 2018 RahulDailyProgressCryo vacuum chamberSchematic for the flanges

The vacuum chamber has 12 flanges (four 4-5/8 and eight 2-3/4 flange size). For the pump down test I will attach the pumping station to the 4-5/8 flange and close down the other three flanges with blank flange. Similarly out of the eight smaller flanges (2-3/4 size) five will have Tees (for 2 gauges), up to air valve, two optical windows, cryo-feedthrough and the remaining with blank flanges (or else I can change them with other feedthroughs to test them out for vacuum leakage). Just for information - the pumping station is attached to a reducer which will house the rotary valve. Reducer is requred to match the flange size of the pumps (4-51/2 siz - CF63 size) and the vacuum chamber (4-5/8 size). The rotary valve will be attached to the hose which will then be attached to the flange of the vacuum chamber.

Attachment 1: Schematic_chamber.jpg
Schematic_chamber.jpg
  2271   Thu Dec 6 12:44:18 2018 RahulDailyProgressCryo vacuum chamberFabricated parts arrived

Cold plate and the radiation shields have arrived. I will perform a mock assembly of these fabricated parts to check if they are as per our drawings. Next, the outer radiation shields will be shipped for gold plating the outer surface. Rest of the fabricated parts will be cleaned (lots of grease and finger marks visible) and then baked.

Attachment 1: Fabricated_Cold_plate.jpg
Fabricated_Cold_plate.jpg
  2272   Thu Dec 6 16:49:40 2018 RahulDailyProgressCryo vacuum chamberChamber and bottom plate assembly

The bottom plate and the vacuum chamber (collar) has been assembled – thanks to Aaron for helping me out. The O-ring holds in well in the dovetail groove and makes it really easy (without falling off) to assemble the two components together.

Attachment 1: O-ring_bottom.jpg
O-ring_bottom.jpg
Attachment 2: Bottom_collar_assembly.jpg
Bottom_collar_assembly.jpg
  2276   Fri Dec 7 16:08:45 2018 RahulDailyProgressCryo vacuum chamberRadiation shields

The cold plate and radiations shields (100K, 50K and bottom 100K shields) are at 40m for cleaning and baking. The outer shields will be cleaned and then sent for gold plating. The inner shield and cold plate be baked after cleaning. 

Attachment 1: shields_1.jpg
shields_1.jpg
Attachment 2: shield_2.jpg
shield_2.jpg
Attachment 3: shields_bottom.jpg
shields_bottom.jpg
  2278   Tue Dec 11 16:26:07 2018 RahulDailyProgressCryo vacuum chambercleaning of shields and cold plate

The radiation shields and the cold plate have been cleaned twice at the bath at 40m. They are currently undergoing baking for 12 hours, will pick them up on Wed morning once finished.

  2279   Wed Dec 12 14:40:17 2018 RahulDailyProgressCryo vacuum chambercleaning of shields and cold plate

The radiation shields and the cold plate have been cleaned (class B) and baked and can be used in vacuum. I brought them back to the lab and will ship the outer shields for Gold plating.

Attachment 1: IMG_0238.jpg
IMG_0238.jpg
Attachment 2: IMG_0237.jpg
IMG_0237.jpg
  2285   Fri Dec 21 15:23:02 2018 RahulDailyProgressCryo vacuum chamberChamber closed for 1st pump down test

The cryo vacuum chamber was closed yesterday (Thursday) for the 1st pump down test. The figure below shows various components which was attached on to the CF flanges. Later I will post the results of the ongoing pump down test.

Attachment 1: Picture1.jpg
Picture1.jpg
Attachment 2: Picture2.jpg
Picture2.jpg
Attachment 3: Picture3.png
Picture3.png
Attachment 4: Picture4.jpg
Picture4.jpg
  2288   Fri Dec 21 16:14:42 2018 RahulDailyProgressCryo vacuum chamberPump down results

I switched on the pumping station this morning at 10 am and roughly after 6 hours of pumping the pressure in the vacuum chamber is 8.2*10^-6 Torr. The pressure is being monitored using two gauges (wide range gauge and Ion gauge). However due to some reason the gauge controller is unable to switch on the Ion gauge (there is an inbuilt safety in the controller to protect the low pressure gauge, so this could be one of the reason).

 

I will keep the pumps running overnight and through out the weekend to monitor the pressure.

Attachment 1: Pressure.jpg
Pressure.jpg
Attachment 2: PLot1_pressure.png
PLot1_pressure.png
  2364   Tue Jun 18 00:43:17 2019 DuoDailyProgressCryo vacuum chamberChamber Opening

With the help from Chub, we opened the vacuum chamber. The procedures are not complicated. Here are some notes, both about the opening procedures and some other things I learned from Chub.

1) Vent the chamber by opening the venting valve slightly. The venting process needs to be slow - we cover it with a wipe, as shown in the photo 1. We stop opening the valve when we hear the air wheezing.

2) The thing with a screen is a gauge, which gives the pressure inside, but it is not quite working - always showing atmosphere pressure. Chub left me a document on it; I should be able to get it working.

3) We removed the screws of the top chamber. Correct hex keys is necessary - I was going to use one that loosely fits but Chub said it is not good.

4) We lifted the cover of the chamber with the crane and put it besides the chamber. We should release the break of the crane first and then break it again when we land the weight.

5) The pump connection is not very good - leaking oil both into the chamber and onto the floor.

6) The surface under the chamber (shown in photo 2) cover can only be cleaned by dry wipe or alcohol. 

Next I am going to set up the optics, electronics and whatever inside before we close it and pump it down.

Attachment 1: image1.jpeg
image1.jpeg
Attachment 2: image1.jpeg
image1.jpeg
  2428   Wed Oct 9 17:40:57 2019 Raymond, Chris, DuoDailyProgressCryo vacuum chamberClosing the vacuum chamber

We closed the chamber without installing the radiation shields or cold plate in order to test the vacuum pressure of the empty system. Upon turning on the backing pump there was a fine oil mist from exhaust port, so the pump was turned off and an oil trap/filter has been purchased. 

It was estimated that 12 inch/pound of torque is required for each of the top plate bolts in order to compress the 75 Shore hardness Viton o-ring by 20% (recommended by O'Hanlon). 

 

  2429   Thu Oct 10 17:28:33 2019 Raymond, ChrisDailyProgressCryo vacuum chamberRadiation shields unpacked

Today we unpacked the radiation shields and started to puzzle out how to assemble them. Attached are photos of the parts as we guessed they are intended to stack up. We didn't see how the outer shield would be supported and isolated from the cold plate, so we are contacting Rahul to clarify.

One detail not shown in these photos is the rather poor weld quality on the interior of the outer shield.

 

Attachment 1: IMG_20191010_150645.jpg
IMG_20191010_150645.jpg
Attachment 2: IMG_20191010_150700.jpg
IMG_20191010_150700.jpg
Attachment 3: IMG_20191010_150711.jpg
IMG_20191010_150711.jpg
Attachment 4: IMG_20191010_150757.jpg
IMG_20191010_150757.jpg
Attachment 5: IMG_20191010_150817.jpg
IMG_20191010_150817.jpg
Attachment 6: IMG_20191010_150826.jpg
IMG_20191010_150826.jpg
  2430   Fri Oct 11 17:12:26 2019 Raymond, ChrisDailyProgressCryo vacuum chamberClosing the vacuum chamber

We installed the oil filter/trap on the roughing pump and began pulling a vacuum. This was delayed due to the turbo pump flashing an error message and shutting off automaticallly after failing to spin up within its preset ramp-up time (error message 1221(3)). Upon restarting the system there were no ramp up issues, likely due to the chamber already having pumped down to ~0.5 Torr at the time of restart. Fix: need to increase the turbo pump delay start time, currently at 0 (immediately spins up). After 30 minutes of pumping the pressure reached ~4e-5 Torr in the chamber. (It reached 7e-6 torr after 3 days of pumping.)

We also tested an alternate internal configuration with the unwrapped components (see attached doodle, unlabelled green disc is the cold plate). This has the advantage of thermally isolating the outer radiation shield from the cold plate, but, we found, would slightly misalign the optical input ports. 

Several ant traps were placed around the lab to combat the observed ant problem. 

Attachment 1: IMG_0204.JPG
IMG_0204.JPG
  2431   Fri Oct 11 17:33:47 2019 ranaDailyProgressCryo vacuum chamberClosing the vacuum chamber

we'll suffer if we use a oil based pump long term - please find and order a dry pump to back this turbo. Not only is it bad for the vac chamber, its bad for other optics in the lab,

  2434   Fri Oct 18 14:44:22 2019 ChrisLab InfrastructureCryo vacuum chamber208V electrical service was installed in the QIL

A historical note - electricians from Facilities visited the lab several weeks ago and installed new electrical service. To do this with a minimum of disruption to the lab, they de-installed some electrical outlets along the south wall and reused the conductors. They also taped up plastic sheeting to the table enclosure to protect the squeezing and laser stabilization experiments.

  2435   Mon Oct 21 17:07:17 2019 ChrisLab InfrastructureCryo vacuum chamberCryo chamber vacuum pressure logging

Ever since the initial pumpdown the pressure in the new cryo chamber has been stuck at ~6e-6 torr, so there's probably a small leak.

Our vacuum gauge controller has a serial communications port, which we can use to log the system pressure to aid in leak hunting. It's connected now to an unused port on fb4. A small python-based epics server queries the pressure gauges and makes the data available as two epics channels, C4:VAC-CRYO_PRES_P1 (wide range gauge) and C4:VAC-CRYO_PRES_P2 (ion gauge). These are recorded by the framebuilder. The script is stored under ~controls/services on fb4 and should start automatically on reboot.

Attachment 1: vac.png
vac.png
  2440   Tue Nov 5 20:06:36 2019 RaymondUpdateCryo vacuum chamberCooler to tank connection

Attached is a drawing of the first phase (minimal vibration isolation) cryocooler attachment, where the main tank connects via the blue rimmed feedthrough. Boxed/circled components are those that will require custom fabrication:

  1. Copper adaptor from heat station to thermal strap
  2. 5.25" outer diameter 2-153 o-ring connection to conflat adapter (DN75 (4-5/8" outer diameter, 3" tube OD) pictured, but am comparing this with the DN100 (6" OD, 4" tube diameter))
  3. Conflat to ASA o-ring adapter
  4. a + b: Copper adapter from the flat strap connector to the round copper vacuum feedthrough (closeup shown in second figure)

Currently there are only two connections that require viton o-ring rather than conflat connections (cooler to piece 1, piece 3 to HV feedthrough). 

Attachment 1: CoolerCartoon.pdf
CoolerCartoon.pdf
Attachment 2: Screen_Shot_2019-11-05_at_20.25.54.png
Screen_Shot_2019-11-05_at_20.25.54.png
  2441   Wed Nov 6 17:05:33 2019 RaymondDailyProgressCryo vacuum chamberConflat flange tightening

Tightened all of the vacuum ports on the chamber so that the flange interfaces are all now metal-to-metal, ie full copper gasket compression. All of the ports required at least two star pattern passes before reaching this point, except for the bellows line to the turbo/backing pumps which was already at complete compression. Prior to tighening, the wide range gauge gave a pressure reading of 5.8x10-6 Torr and the ion-gauge showed 5.75x10-6 Torr. After tightening the wide range flange the reading dropped to 5.6x10-6 ; after tightening the ion-gauge flange the gauge reading dropped to 5.69x10-6

For future reference: the 4.625" flanges use 5/16" torx bolts and 1/2" nuts, and the 2.75" flanges use a 1/4" torx bolt and 7/16" nuts. 

  2442   Mon Nov 11 22:19:09 2019 RaymondDailyProgressCryo vacuum chamberChanges to preserve long strap for internal chamber use

I've attached a photo of some changes to the cryocooler-tank connection design. We can save money and space by removing the 45 degree 1.33" conflat ports from the custom CH104 to 6" conflat adapter and using zero length conflat reducers at the unused 4 way cross ports, ie replace the 4-way piece blanks with holes for the vacuum line and gauge. The primary goal for these changes is to shorten the path from the cooler's heat station to the tank so that we keep the long thermal strap for use inside the tank. Also, the height is reduced from 89 cm to 59 cm.

A slightly different cupper adapter is needed to accomodate the thick strap, but no adapter will be needed anymore between the heat station and the thermal strap (same diameter round mates(new holes will need to be drilled though)).

Attachment 1: ShortAdapter.png
ShortAdapter.png
  2444   Tue Nov 12 17:44:39 2019 RaymondDailyProgressCryo vacuum chamberTank Update

Last week I moved the upper portion of the crane to the new, bolted crane support stand. Chub removed the wheeled lower section from the lab shortly thereafter. I also re-threaded the nylon lifting strap to remove slack and level the lid a bit better during lifting and moved one of the side tables next to the crane so the lid can be safely lowered after being lifted off the tank (see first photo). 

Opened the tank today to check internal dimensions. It is now closed (top bolts finger tight) but not under vacuum. The diaphragm pump was dispatched today, so will replace the dirty pump and pull vacuum again upon arrival. 

Attached a photo of the baseplate for future drill pattern reference. Note there are three anomalous holes, this is where the PEEK support poles should go. It was discovered today that these holes are 1/4-20 tapped but the PEEK pillars are dirlled/threaded for a smaller bolt.

I've attached a rough cartoon of the cold plate height relative to the optical ports and the tank wall. The outer rad shield is not shown and is slightly misaligned, but it can be easily aligned with a ~1.5 mm shim (better for thermal isolation anyways). 

Attachment 1: IMG_0258.JPG
IMG_0258.JPG
Attachment 2: IMG_0257.JPG
IMG_0257.JPG
Attachment 3: IMG_0259.JPG
IMG_0259.JPG
  2455   Thu Nov 21 21:58:27 2019 RaymondDailyProgressCryo vacuum chamberTank Update

Update of our available electrical feedthroughs:

2 x 19 pin round with corresponding internal connectors and external connectors

2 x 15 D sub 

- re-tapped the PEEK support pieces to 1/4-20 to match the bottom of the tank, added them with vented socket set screws. These will need to be replaced with brass or aluminum to better match thermal contraction (steel screws likely to crack the PEEK upon cooling)

- Drilled holes (attached, highlighted in orange) in the pump station base in order to utilize the more robust shock absorbers that came with the oil pump. 

- Noticed significant flaking of the nuts/bolts when removing the tank lid. Suggested using anit-seize compound on the tank lid bolts but Chris advised against anything lube-like on the system. Just a note to remember to check the integrity of the bolts going forward before tightening the lid to avoid bolt seizing. 

Attachment 1: IMG_0490.JPG
IMG_0490.JPG
Attachment 2: IMG_0491.JPG
IMG_0491.JPG
Attachment 3: DiaphragmAdapt.pdf
DiaphragmAdapt.pdf
  2476   Wed Dec 11 15:53:48 2019 Aidan, Chris, RaymondHowtoCryo vacuum chamberProcedure to record photodiode output vs temperature

[Aidan, Chris, Ray]

  1. Add LN2 to cryo-chamber
  2. Turn on heater to 25W
  3. Wait for LN2 to boil off
  4. Turn on the REFPD bias switch, and enable a 200 mV bias on the JPL PD (set C4:TST-FM13_OFFSET to 200)
  5. Switch the readout to the transimpedance amplifier (relay control output from C4:TST-FM15 at 30k ct)
  6. Turn on the laser
    1. Power up the LDC201C and set it for half-power output (50 mA), with the modulation output from C4:TST-FM12 at zero
    2. Set C4:TST-FM12_OFFSET to 1 to go up to full power
  7. Monitor the PD output on oscilloscope and adjust horizontal and vertical alignment of laser beam so that the output of the PD is maximized (also adjust TIA gain if needed so the output is not saturated)
  8. Switch the readout to the Keithley (relay control output from C4:TST-FM15 at zero)
  9. Record bright PD response
    1. Turn on laser (set C4:TST-FM12_OFFSET to 1)
    2. Scan bias voltage and record the PD response using the source meter (scripts are located in $HOME/JPL_PD/scripts on qil-ws1)
      1. ./runsweep.py triggers the Keithley to sweep the bias (range of sweep is defined in the script)
      2. ./getdata.py FILENAME downloads data from the Keithley and writes it to FILENAME
    3. Record REF PD reading
    4. Record RTD resistance
  10. Record dark PD response
    1. Turn off laser (set C4:TST-FM12_OFFSET to -1)
    2. Repeat steps 9-2 through 9-4
  11. Switch the readout to the transimpedance amplifier (relay control output from C4:TST-FM15 at 30k ct)
  12. Measure dark noise vs bias (using either the SR785 or the cymac, TBD)
  13. Wait two minutes and repeat steps 6 through 12 (there is a script ./autorun.sh which continuously repeats steps 9 and 10)
  14. Continue until RTD reaches room temperature (approximately 60-90 minutes).
  2477   Wed Dec 11 19:50:25 2019 ranaHowtoCryo vacuum chamberProcedure to record photodiode output vs temperature

don't we also want to record the dark noise spectrum as a function of T and V_Bias ? I would guess that the dark noise doesn't always scale with dark current at low frequencies since its probably more like a random walk than shot noise.

  2497   Fri Jul 17 15:54:42 2020 StephenLab InfrastructureCryo vacuum chamber 

Torque driver set for QIL setup bolted joints, with range 15 in*oz - 50 in*lb, p/n WIHA 5HYL9, is on order from Grainger, with anticipated delivery in the week of July 20th. Refer to  PO S477925. *update* Tracking Number UPS 1Z19W9330321365493

Cryo connection copper parts PO S475316 will be finished early next week by the machine shop in Torrance, I'll bring them to campus or to Raymond's place (TBD).

  2498   Fri Jul 24 04:46:51 2020 StephenLab InfrastructureCryo vacuum chamber 

Copper parts picked up July 23rd and brought to QIL, now only waiting on PO# S477874 and the pirani gauge from Koji's bulk JPL order

Quote:

Torque driver set for QIL setup bolted joints, with range 15 in*oz - 50 in*lb, p/n WIHA 5HYL9, is on order from Grainger, with anticipated delivery in the week of July 20th. Refer to  PO S477925. *update* Tracking Number UPS 1Z19W9330321365493

Cryo connection copper parts PO S475316 will be finished early next week by the machine shop in Torrance, I'll bring them to campus or to Raymond's place (TBD).

 

  2501   Fri Jul 24 07:50:00 2020 RaymondUpdateCryo vacuum chamberPrototype shield panels

Picked up the prototype shield panels from Hamilton Metalcraft 7/22 and brought them to QIL. All of the parts are wrapped by part number and in a bin (see attached photo). There are 6 sets of shield panels, but 2 full sets were removed for coating vendors. One full set is as follows (20 parts total):

Part # Quantity
01 2
02 1
03 4
11 2
12 1
13 2
14 2
031 1
032 1
033 1
131 1
132 1
133 1

All component #'s are preceded by 'D2000298-'. 031, 032, and 033 are 03 panels but with hole variations, same goes for 131, 132, and 133 with respect to panel 13  

Attachment 1: MarinerShieldPrototype_parts.jpg
MarinerShieldPrototype_parts.jpg
  2502   Tue Aug 4 17:08:00 2020 RaymondUpdateCryo vacuum chamber19 pin MIL feedthrough and CTC100 wiring

Used the 19-pin MIL feedthrough to run 4 platinum RTD's and a 25 Ω 100 W resistive heater to the cold head. Attachment 1 is the wiring diagram for the feedthrough and the D-sub connector to the CTC-100 temperature sensor. Attachment 2 shows the three RTDs placed on the cold head. It also shows the thermal anchoring of all lead wires. Attachment 3 shows the RTD attached to the cooler below the cold head using cigarette paper and cryo varnish (stored in the flammables cabinet in QIL).

 The Al block is a premade PT-RTD integrated mounting setup, which was placed on some indium sheet bits and clamped down with a screw and belleville washer. The other two cold head sensors are pressure fit to the cold head by a spring loaded mini dog clamps, and one of the two has some indium underneath the RTD to see if there is any value in doing so going forward with these mounting springs. The glued sensor was attached by painting a thin layer of cryo varnish on the cooler, adding a strip of cig paper, layer of varnish, press in sensor, another strip of paper, paint over all of it with a last thin layer of varnish that reaches beyond the bounds of the paper strips. 

Attachment 1: QIL_TempSensor_MIL19pinWiringDiagram.pdf
QIL_TempSensor_MIL19pinWiringDiagram.pdf
Attachment 2: external_tank_RTDs_1.pdf
external_tank_RTDs_1.pdf
Attachment 3: F6D69C6A-7168-4D06-B02A-E83CE8AFE524_1_105_c.jpeg
F6D69C6A-7168-4D06-B02A-E83CE8AFE524_1_105_c.jpeg
  2503   Fri Aug 7 11:50:06 2020 RaymondUpdateCryo vacuum chamberTank pumpdown

The diaphragm pump was turned on earlier this week after finally closing up this external adapter tank. Out of an overabundance of caution the tank and cryocooler are supported by the skycrane and a number of posts to prevent it walking off the foam resting pad once the cryocooler is switched on.

All temperature sensors agree with each other within 0.1 K at room temperature yes

Attachment 1: 6A57C6DF-0B58-413E-B9C0-797B14A10CCF_1_105_c.jpeg
6A57C6DF-0B58-413E-B9C0-797B14A10CCF_1_105_c.jpeg
  2504   Fri Aug 14 11:17:04 2020 RaymondUpdateCryo vacuum chamberCooler now operational

Cryopump is up and running. Initial attempts to run the cooler were stymied by an open circuit in the cold head to compressor connection caused by one of the two accessory port fuses (right, circled in attachment 1). The compressor would run but the valve motor wouldn't start in the cooler itself. I extended the spring in the fuse housing (attachment 2) and it seems to have fixed the problem, as now the valve motor starts at the same time the compressor is turned on. Attachment 1 also shows the highly technical cord management procedure done to reduce the trip hazard caused by the compressor power plug. 

User manual recommendations*:

  • Equalization pressure (when not operating): 270-275psi
    • Currently sits at 270psi
  • Operating pressure: 290-330psi
    • Operating at 300psi
  • Insulating vacuum pressure: 1 x 10-3 Torr
    • Vacuum pressure stabilized at 8.5 x 10-1 Torr
      • Edwards diaphragm pump listed ultimate pressure is 1.5 mbar ≈ 1.1 Torr, so either the multirange gauge is malfunctioning or we're getting better backing pressure than expected from the diaphragm pump. A Pirani gauge will be attached to the vacuum space going forward so we'll see how it compares; either way we're above the recommended insulation pressure. The 11" nipple surrounding the coldhead does become cool to the touch during operation, but it does not get cold enough to create condensation.

*Manuals for both the compressor and the cryocooler are linked on the West Bridge wiki manuals page

Attachment 1: IMG-1190.JPG
IMG-1190.JPG
Attachment 2: IMG-1187.JPG
IMG-1187.JPG
Attachment 3: IMG-1189.JPG
IMG-1189.JPG
  2505   Wed Sep 2 08:13:18 2020 StephenDailyProgressCryo vacuum chamberAssembly of QIL Setup and other updates from 2020 Sep 01

2020 Sep 01, StephenA with remote assistance from RaymondR

Highlights

  • Silicon Mass - Rana had dropped off the Silicon mass in the first room, so I found it when I arrived - thanks!
  • Organization - It was my first time accessing the QIL lab, but everything was pretty well organized and easy to find. All tools for modifications to parts were used in the EE lab which was also well organized. Raymond helped me to figure out where to access things on a few occaisions.
  • Packages - received from Downs Logistics room the Electropolished shield set, a Grainger order with deburring tool and step drill bit, and a McMaster order with a range of bolts - these have all been transported to the lab. Also transported the QIL machined parts that I had received from Machining Solutions to the lab.
    • Koji's Photodiode holders are in the QIL lab ready for pickup.
  • Summary of progress
    • Assembled frame (using torque values from T1100066- #8-32 used 20 in*lb)
    • Assembled brackets to frame
    • Hung silicon mass from music wire
      • Wire is captured under #4-40 SHCS with washers ((using torque values from T1100066- #4-40 used 5 in*lb)
  • Outstanding tasks and questions
    • Did the hang hold?
    • Do we want to have the layered Electropolished and Plain shields during the first installation? Or some sanded state?
    • Assembly requires oversized #8-32 washers which I wasn't able to track down from inventory - these are now on order, along with some more supplies for roughening the surface.

Full Details

  • Assembly work
    • Refer to the DCC - T2000538 - for the videos capturing this assembly effort. I've snagged some screenshots which I've dropped into the attachments.
      • There is a tree catching procedures and other experiment documentation for the QIL Setup at T2000539
  • Issues - there were four issues with the fabricated parts, three of which required small modifications;
    • D2000299-01 small angle rails had threaded holes where there should have been clearance holes for the interface (no issue on big angle rails)
      • modified by drill press to drill out clearance holes at same location
    • D2000308 interface cubes all were threaded only partially through.
      • No action taken, just paid attention and made sure the threads I needed were adequate. Seemed like an offset of only a turn or two, suggesting the CAM program was just a little off (this can happen with tapping, the tap is tapered and the machinist needs to thread deep enough to have the thread major diameter realized through the hole.)
    • D2000307-04 frame upper spacer had threaded holes that were not tapped all the way through.
      • I ran a tap through all of these threads.
    • D2000299-02 large angle rails had threaded holes that didn't pass all of the way through, and we happened to be inserting screws into the wrong side.
      • I ran a screw through these threads, which required a little bit more force than I would have liked, and forcing the screw provided an adequate thread.
        • Note that I anticipate that there will be an issue similar to this, with similar resolution, on the D2000299-01 small angle rails. The shield panels installed on the sides are to be installed from the inside. This can be resolved with a screw coming in from the outside.
    • There was also some inability to access certain screws with the long torque driver, especially if loosening/tightening after putting the frame together.
      • This was managed by use of an L allen key, which of course meant those joints were not torqued to spec. I'm not worried about this compromise.
Attachment 1: photos_cit_qil_lab_cryo_shield_test_assembly_20200901.zip
Attachment 2: T2000538-v1_Part_3_Assembly_of_QIL_Test_Setup_20200901_end_result.jpg
T2000538-v1_Part_3_Assembly_of_QIL_Test_Setup_20200901_end_result.jpg
Attachment 3: IMG_7582.JPG
IMG_7582.JPG
  2508   Fri Sep 25 14:45:04 2020 StephenDailyProgressCryo vacuum chamberVibration Measurement Equipment and Shield Construction

Came into lab today, with two main goals:

1) Bring Downs equipment for vibration measurements of cryo cooler during next operation

--> DONE, see photo

2) Assemble shields, with two layer scheme using electropolished and mill finish panels.

--> issue: the electropolished shield set was only partially shipped out in Ticket 15101 - unfortunately there was a misinterpretation by Logistics personnel regarding which parts to ship, due to the formatting of the ticket page. I will coordinate shipment of the balance of the panels to the vendor Able Electropolishing for completion of PO S479514

  2530   Fri Jan 29 10:14:16 2021 StephenDailyProgressCryo vacuum chamberRestarting Cryo vacuum chamber effort

StephenA, RaymondR remotely assisting (off payroll haha)

It seems that we won't likely receive the intended hand-off resources (especially of note is that Raymond can't seem to find the videos he made, wherein he guides through operations of the vacuum system and cryocooler). Raymond has been kind enough to support via Zoom as needed so that things can progress with some sort of guidance.

I'll stay on top of the lessons learned and dump these, along with photos and other resources in the log. I'll also make weekly visits with the intent of making continued progress.

1) What is the current state of the QIL Chamber?

- Raymond left the vacuum line shorting the "external volume" with the cross, cryocooler, etc. directly to the "main volume" because the losses between the "external volume" and the feedthrough entering the chamber were too large. The system was down in the e-5 torr range. Ref IMG_8019, with flex hose connecting bottom of 4-way cross to side of chamber.

- To implement this vacuum arrangement, there was a key component put aside on the table - IMG_8024 is a T which connects the roughing line to both the external volume and the main volume, using the flex line from IMG_8019 and the components pictured in IMG_8020.

- The copper feedthrough has all clamps attached, such that temperature measurements are being made on the adapter copper rod, which has a bolt pattern for thermal straps. Sensor names reflect current locations.

- We inspected everything (cryocooler connections, vacuum gauges, temperature logging), and pronounced it "ready to go" at the end of my work day.

2) What did I learn today?

- Cryocooler has only one setting, and temperature control must be engineered at the output using thermal contact, emissivity, etc.

- Formatting of USB is the main error that can befall the CTC100 datalogger. If the red dot in the upper right corner of the screen does not light up bright when it is tapped (this starts datalogging), then there is something wrong. Easy enough to test by removing the USB when the red dot is dim (datalogging paused) and checking whether there are log contents.

- Raymond's focus with the QIL chamber had been on answering the question, "can we cool down the cryocooler's connection (copper linkage which passes into the chamber) adequately?" He had never successfully obtained a cooldown that was below 150 K, and the primary limitation appeared to be related to high pressures in the "external volume".

3) What are we up to next?

- The next time I come in, I will be turning on the cryocooler and datalogging first thing, and I will hopefully have cooldown trends to share in the log.

- If those trends are > 150 K, I was advised that the next thing to do would be to bring the "external volume" out of the equation, and directly attach the cryocooler to the copper feedthrough linkage. This would be one way to demonstrate the least-lossy, best case scenario.

- If < 150 K, I am told that Karthik may be ready to move in for some measurements. If not, I would be interested in dropping in the suspended, shielded Silicon dummy (currently standing by) and seeing if we can measure a successful (< 150 K) cooldown on the Si mass.

4) Can we increase the height of the chamber?

I've shared lots of images related to the question of extending the height of the chamber. Here are my thoughts:

- Raw measurements - Ceiling = 0", Crane ~ -12",  Crane hook ~ -16", Chamber Lid ~ -26", Chamber Base ~ -40", Table ~ -43".

--> Not much space above the surface of lid, currently about 10" of range for a possible extension.

--> Actual useable range is less, due to real world limitations such as the height of lifting straps, interference with the angled crane arm, etc. 

- It would require a clever solution to increase the crane height (spacer at base? extended height model?) or lower the lid height wrt the crane (position on lower table? lower the table on its leveling feet?) to buy a few more inches.

- Current allowed object height ~8" (could be extended to about 10" with modified PEEK spacers at base); would we benefit greatly from having a ~16" allowed object height? Or do we need to get more height out of this update?

- I need to follow up with my request for quote of an extension of ~10" height.

Attachment 1: CryoLabImages_QILelog2530.zip
Attachment 2: IMG_8019.JPG
IMG_8019.JPG
Attachment 3: IMG_8024.JPG
IMG_8024.JPG
Attachment 4: IMG_8020.JPG
IMG_8020.JPG
  2531   Fri Feb 5 08:50:02 2021 StephenDailyProgressCryo vacuum chamberSuccessful cooldown, cold flange without shields

[updated with reference to data set, cleaner plot, images of chamber configuration]

StephenA, 2021.02.05

Data - cooldown 20210205 (CSV = raw, XLSX = Stephen's plots) in Box Folder [Voyager\MarinerBox\CryoEngineering\CSVlogs]

Description - 5.5 hour cooldown with data, which was then allowed to continue for a total of 96 hours (but data collection failed for the long stretch, except for a snapshot of the final state). The cold flange was below 100 K after 6 hours, and leveled off at about 80 K. The vacuum pressure was steady at 3 microTorr throughout, via a roughing line connecting the external and internal volumes (mitigated losses in external connection volume, with no areas dramatically cold to touch). The cold flange was radiating to room temperature surroundings, as the radiation shields were not installed. The cryocooler was turned on/off at the start/end of the data collection, and the in-vac heater was not powered on at all.

Images -

  1. IMG_8047 = starting conditions;
  2. IMG_8119 = intermediate conditions after 5.7 hours;
  3. IMG_8148 = final conditions after 96 hours;
  4. IMG_8232 markup = view of RTD locations on cold flange, with annotations;
  5. IMG_8225 = top view of cold flange and chamber configuration without radiation shields.

Plots -

  1. cooldown_20210205_uhv_coupled_cold_flange_first_segment - shows first 5.5 hours only;
  2. cooldown_20210205_uhv_coupled_cold_flange_all_time - shows all 96 hours, with data points extracted from images.
Attachment 1: IMG_8047.JPG
IMG_8047.JPG
Attachment 2: IMG_8125.JPG
IMG_8125.JPG
Attachment 3: IMG_8148.JPG
IMG_8148.JPG
Attachment 4: IMG_8232_markup.jpg
IMG_8232_markup.jpg
Attachment 5: IMG_8225.JPG
IMG_8225.JPG
Attachment 6: cooldown_20210205_uhv_coupled_cold_flange_first_segment.png
cooldown_20210205_uhv_coupled_cold_flange_first_segment.png
Attachment 7: cooldown_20210205_uhv_coupled_cold_flange_all_time.png
cooldown_20210205_uhv_coupled_cold_flange_all_time.png
ELOG V3.1.3-