7bf5d60ed36cf320889ce91ed85e5f1e61069a40
[thesis.git] / tex / src / figures / calibration-concept-map / concept_map.dot
1 graph message_handler {
2
3   epsilon=0.01;
4   nodesep=0.1; /* inches */
5
6   edge [
7 //    arrowhead=normal,
8 //    dir=both,
9 //    len=1
10         ];
11
12   /* concept nodes */
13   node [
14     shape=box,
15 //    fontsize=12,
16     color=black,
17     fillcolor=white,
18     style="rounded,filled"
19         ];
20
21   k_spring [label="Spring constant"];
22   equipartition [label="Equipartition theorem"];
23
24   temperature [label="Temperature"];
25
26   photo_sense [label="Photodiode sensitivity"];
27
28   voltage_var_spring [label="Voltage variance\ndue to the spring"];
29   psd_fit [label="Fit power spectral density"];
30   psd_measured [label="Measured power spectral density"];
31
32
33   /* data nodes */
34   node [
35     fillcolor="#ffd83d", /* drexel yellow */
36         ];
37
38   thermocouple [label="Thermocouple voltage"];
39   contact_slope [label="Surface contact"];
40   voltage_noise [label="Voltage noise"];
41
42   /* Deeper calibration nodes */
43   node [
44     fillcolor="#ff9999", /* reddish */
45         ];
46   zp_calib [label="Z-piezo calibration"];
47   volt_calib [label="Voltmeter calibration"];
48   thermocouple_calib [label="Thermocouple calibration"];
49
50   k_spring -- equipartition;
51
52   equipartition -- temperature -- thermocouple;
53   equipartition -- photo_sense -- contact_slope;
54   equipartition -- voltage_var_spring -- psd_fit -- psd_measured -- voltage_noise;
55
56   temperature -- thermocouple_calib;
57   photo_sense -- zp_calib;
58   psd_measured -- volt_calib;
59
60 }