Experimental Data & Results

Earth's Magnetosphere

This page contains a record of experimental data acquired at the Observatory. The data is updated hourly and is available as the most recent one, six, and twenty-four hour graphs. Additionally, at the end of each calendar day, that day's data is archived and made available in the table of Archived Data. By default, the most recent twenty-four hour graphs are displayed. The most recent one and six hours of data can be selected by clicking on their respective buttons and daily data can be viewed by clicking on one of the date fields in the table of Archived Data below.

Anywhere from one to six graphs are displayed at any time including "Field Signal", "Error Signal", "Internal Temperature", "External Temperature", "Heater Power", "Laser Power", all as a function of time. The Field Signal contains a record of the relative magnetic field measured by the Balance. The Error Signal displays how well the Balance is following the relative magnetic field. The Internal and External Temperatures show the temperature in the vicinity of the Nulling Magnet Assembly and on the south outside of the enclosure, respectively. Heater Power provides an indication of how much thermal power is being dissipated to maintain the enclosure interior at the desired set temperature. Laser Power is an arbitrary measure of the brightness of the laser source. Experimentally this signal is found to be significantly sensitive to the temperature of the laser diode assembly and offers and independent measure of internal temperature fluctuations.

Observatory Location:

Latitude: 40.572° North
Longitude: 105.062° West
Elevation: 1.5 km above sea level

Current Date & Time:

08:08 Hr, 4 February 2012 UTC
00:08 Hr, 4 February 2012 PST



Data Archives:

Click on any date below to display the corresponding archive.

All dates are UTC

#! /usr/bin/perl # ----------------------------------------------------------------------------------------------------------- # graph_data_table, by Joseph A. DiVerdi # Copyright 2002 by XTR Systems, LLC, All Rights Reserved # ----------------------------------------------------------------------------------------------------------- # Includes and other external modules use warnings; use strict; use Time::Local; use CGI qw(-no_xhtml); use CGI::Carp; # qw(fatalsToBrowser); # ----------------------------------------------------------------------------------------------------------- my $q = CGI->new; my $directory = "/users/diverdi/html/magnetometer/graphs_daily/"; opendir GRAPHS, $directory or croak "Can't open directory '$directory': $!\n"; my @file_names = readdir GRAPHS; close GRAPHS; # traverse the list of file names and populate three multi-dimensional arrays with the corresponding day, month, and year # an empty value is used as the minimum necessary to return true with the defined function my ($years, $months, $days); foreach my $file_name (@file_names) { next unless $file_name =~ /^(\d{4})[_.-](\d{2})[_.-](\d{2})[_.-]UT[_.-]field\.png$/; $years->{$1} = ''; $months->{$1}{$2} = ''; $days->{$1}{$2}{$3} = ''; } # create a table containing the available archive files with 31 rows to accomodate the maximum number of days in a month # the number of columns depends on which month-year pairs are present in the archive directory # set up a few arrays outside the loops to speed their execution my @month_names = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); # the day numbers must be formatted as two character strings with a leading zero as necessary to match the array keys my @day_numbers; foreach (1..31) { push @day_numbers, sprintf("%02d", $_) } my $url = ($q->keywords)[0] || ''; my $table_body = qq(\n); foreach my $day (@day_numbers) { $table_body .= qq(\n); foreach my $year (sort keys %{$years}) { foreach my $month (sort keys %{$months->{$year}}) { $table_body .= qq(\n); } } $table_body .= qq(\n); } $table_body .= qq(\n); print $q->header(-type => 'text/plain'), $table_body; exit; # -----------------------------------------------------------------------------------------------------------