// ENTER CAID, CAMPN, and Analyst WITHIN THE QUOTES IN THE FOLLOWING 2 LINES ...
$caid="900"; // e.g. $caid = "90";
$campn="F"; // e.g. $campn = "D2" or $campn = "Q";
$analyst="D. Kelly"; // e.g. $analyst="D. Kelly";
// YOU CAN SKIP DOWN TO THE OUTCOME SECTION NOW.
include ("IOC_connect.php"); // this line isn't for you
include ("IOC_log_fns.php"); // this line isn't for you
$db = ioc_db_connect();
$query="select * from ioc_tasks where camp_crnt = '$campn' and caid = $caid limit 1";
$result = mysql_query($query);
if (mysql_num_rows($result) != 1) {
echo "
Contact Stansberry - ";
echo " there is a problem w/ your write-up.
\n";
return ;
}
$row = mysql_fetch_array($result);
$title = $row["title"];
$princ = $row["principal"];
$deputy= $row["deputy"];
$campn0 = $row["campn0"];
$aorkeys = $row["aorkeys"];
// get real name of principal, deputies
$princ = ioc_get_person($princ);
$princ = $princ[0];
$deps = explode(",",$deputy);
foreach ($deps as $depty) {
$depty = trim($depty);
$depty = ioc_get_person($depty);
$depty = $depty[0];
$depty = explode(",",$depty);
$depty = $depty[0]; // last names only
$deplist[] = $depty;
}
$deplist = implode(", ", $deplist);
$caid = sprintf("%03d",$caid);
$file = "mips-".$caid.$campn.".analysis.php";
// END PHP.
?>
echo "MIPS-$caid, Campaign $campn IOC/SV Analysis"; ?>
if (file_exists("master_header.php")) { include ("master_header.php");} ?>
echo "MIPS-$caid, Campaign $campn IOC/SV Analysis"; ?>
echo "$title \n"; ?>
Principal: = $princ;?>
Deputy: = $deplist;?>
Analyst: = $analyst;?>
AORKEYS: if (! $aorkeys) {echo "unknown";} else { echo $aorkeys;}?>
Last Updated:
if (file_exists($file)) {echo date("D M d Y, H:i:s", filemtime($file) ) ;} ?>
if (file_exists("analysis_header.php")) { include ("analysis_header.php");} ?>
Task Outcome Summary
- DATA STATUS: Nominal
- TASK OUTCOME: Nominal
Abstract
In this task, diagnostic data is collected during a 24um thermal anneal.
The thermal anneal stabilizes the 24um array in preparation for science
operations. The anneal executed properly. The instrument and array
temperatures were about .04K colder during this campaign than they had
been in campaigns D1,D2,E. The thermal conductances changed slightly,
resulting in different heating and cooling curves. Until we settle at
a final operating temperature, I will hold off on creating a new master
set of temperature curves. The temperature plots from this anneal are
presented in the report for metatask MIPS-2050.
Analysis
We converted the diagnostic data from the thermal anneal into temperatures
and generated temperature plots. These data are compared to the temperature
curves from previous anneals. See the writeup for MIPS-2050 for details.
Results
Tepmerature Plots from Anneal
The temperature plots can be seen in the writeup for MIPS-2050.
The temperature behavior during the anneal was nominal.
Conclusions
The 24um thermal behavior is still changing somewhat with instrument
temperature. Once we settle at a final temperature, we should be able
to construct a very good set of master temperature curves for the 24um
thermal anneals.
Output and Deliverable Products
None.
Actions Following Analysis
None.