PICO

PICO is an experiment searching for direct evidence of dark matter using a bubble chamber of chlorofluorocarbon (Freon) as the active mass. It is located at SNOLAB in Canada.

It was formed in 2013 from the merger of two similar experiments, PICASSO and COUPP.[1][2]

PICASSO (Project In CAnada to Search for Supersymmetric Objects, or Projet d'Identification de CAndidats Supersymétriques SOmbres in French) was an international collaboration with members from the Université de Montréal, Queen's University, Indiana University South Bend and Czech Technical University in Prague, University of Alberta, Laurentian University and BTI, Chalk River, Ontario. PICASSO was predominantly sensitive to spin-dependent interactions of Weakly Interacting Massive Particles (WIMPs) with fluorine atoms.

COUPP (Chicagoland Observatory for Underground Particle Physics) was a similar project with members from Fermilab, University of Chicago, and Indiana University. Prototypes were tested in the MINOS experiment far hall, with a scaled-up experiment also operating at SNOLAB. It used trifluoroiodomethane (CF3I) as the medium.

Principle

A bubble detector is a radiation sensitive device that uses small droplets of superheated liquid that are suspended in a gel matrix.[3] It uses the principle of a bubble chamber but since only the small droplets can undergo a phase transition at a time, the detector can stay active for much longer periods than a classic bubble chamber. When enough energy is deposited in a droplet by ionizing radiation the superheated droplet undergoes a phase transition and becomes a gas bubble. The PICASSO detectors contain Freon droplets with an average diameter of 200 μm. The bubble development in the detector is accompanied by an acoustic shock wave that is picked up by piezo-electric sensors. The main advantage of the bubble detector technique is that the detector is almost insensitive to background radiation. The detector sensitivity can be adjusted by changing the temperature of the droplets. Freon-loaded detectors are typically operated at temperatures between 15–55 °C (60–130 °F).

The validity of the bubble detector concept has been shown in several publications.[4] There is another similar experiment using this technique in Europe called SIMPLE.

PICASSO

The PICASSO experiment operated at SNOLAB. It had two science runs: first with 2 (results published in 2009) and later with 10 (results published 2012) detector elements. The final configuration of the detector had 32 detector elements (results not published). It found no dark matter signal.

COUPP

The COUPP collaboration operated a bubble chamber in Fermilab 2011-2012. Particles from a particle accelerator beam were fired at the chamber to evaluate the technology for dark matter detection.

The COUPP collaboration operated a bubble chamber with 3.5 kg CF3I in the MINOS underground area at Fermilab. The results were published January 2011. The COUPP collaboration also operated the same bubble chamber with 4 kg CF3I in SNOLAB from September 2010 to August 2011. SNOLAB-results (also called COUPP-4kg) were published in 2012. No dark matter was detected.

Results of PICASSO and COUPP

PICASSO reports results (November 2009) for spin-dependent WIMP interactions on 19F. No dark matter signal has been found, but for WIMP masses of 24 GeV/c2 new stringent limits have been obtained on the spin-dependent cross section for WIMP scattering on 19F of 13.9 pb (90% CL). This result has been converted into a cross section limit for WIMP interactions on protons of 0.16 pb (90% CL). The obtained limits restrict recent interpretations of the DAMA/LIBRA annual modulation effect in terms of spin dependent interactions.[5]

New results were published in May 2012, using 10 detectors with total exposure 14 kg·d, to constrain low-mass WIMP interaction on 19F.[6] The best spin-dependent limits were obtained for a 20 GeV/c2 WIMP mass: 0.032 pb (90% C.L.) for proton cross section. For the Spin-independent near 7 GeV low mass region cross section: 1.41×10−4 pb upper limit (90% C.L.)

PICO

[7]

The PICO project started when the PICASSO and COUPP groups merged in 2013. The PICO experiment is located in SNOLAB, Canada, in a mine at the depth of 2 km. As of 2018, the PICO collaboration has operated two experiments in SNOLAB: a bubble chamber called PICO-2L and a chamber called PICO-60 (formerly named COUPP-60), where the numbers 2 and 60 refer to the volume (in litres) of the target material in each chamber. The target material used was C3F8. A larger version of the experiment is being planned as of 2018. The larger version would have a target volume of 250-500 litres (and called PICO-250 or PICO-500, respectively). The construction of the PICO-500 experiment is expected to start in 2019.

PICO-2L was the first bubble chamber to start operation in October 2013. Its science runs took place October 2013-May 2014 (science run 1) and February 2015-November 2015 (science run 2). PICO-2L was decommissioned in 2016.

PICO-60 followed PICO-2L. It started data-taking in 2013 and this first science run continued until May 2014. For this first run, the detector was filled with CF3I and the detector only used about half its capacity in terms if active volume (the active volume was 25 litres). After this initial run, the detector was refurbished, the target material was switched to C3F8 and the active volume was increased to full capacity (53 litres). The refurbishing work was completed and the second science run started summer 2016. The second science run ended in the summer of 2017, after which PICO-60 was decommissioned. The PICO-60 experimental station is used for a new bubble chamber called PICO-40L. The PICO-40L is a new type of bubble chamber whose technical structure eliminates the need for a buffer liquid that is a source of measurement noise. The PICO-40L was under construction in 2018, with initial results expected 2019.

The PICO collaboration also has a number of bubble chambers used for calibration purposes (not for dark matter detection), like the CIRTE (COUPP Iodine Recoil Efficiency) and PICO-0.1 chambers.

gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.

References

  1. "PICO". SNOLAB. Retrieved 2015-12-01.
  2. "PICO/PICASSO". Institute of Particle Physics. Retrieved 2015-12-02. The PICASSO and COUPP collaborations merged in 2013 to form the PICO collaboration.
  3. "Bubble detector". Archived from the original on 2008-03-20. Retrieved 2008-12-23.
  4. http://inspirehep.net/search?p=find+collaboration+picasso&FORMAT=WWW&SEQUENCE=
  5. S. Archambault; et al. (PICASSO Collaboration) (2009). "Dark matter spin-dependent limits for WIMP interactions on 19F by PICASSO". Physics Letters B. 682 (2): 185–92. arXiv:0907.0307. Bibcode:2009PhLB..682..185A. doi:10.1016/j.physletb.2009.11.019.
  6. PICASSO Collaboration (3 May 2012). "Constraints on low-mass WIMP interactions on 19F from PICASSO". Physics Letters B. 711 (2): 153–161. arXiv:1202.1240. Bibcode:2012PhLB..711..153A. doi:10.1016/j.physletb.2012.03.078.
  7. "PICO dark matter search experiment".

Further reading

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.