This is version 227.
It is not the current version, and thus it cannot be edited.
[Back to current version]
[Restore this version]
<html>
<script>
// Due to security resrictions in the browser, the scripts will not
// work immediately after changing the page
//
var cans = {
"DIL3/DIL4": {
MA02: {top: 366, bot: 354, base: 7, win: 38, winbase: 53, candia: 21, spacer: 22.6, dia: 21, gapmin:0, gapmax:5},
MA6: {top: 366, bot: 311, base: 8, win: 39, winbase: 52, candia: 23.4, spacer: 23.1, dia: 21, gapmin:3, gapmax:5},
MA7: {top: 366, bot: 361, base:11, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5},
MA10: {top: 605, bot: 0, base:11, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2},
MA11: {top: 366, bot: 280, base: 8, win: 39, winbase: 23, candia: 17.1, spacer: 17, dia: 14, gapmin:0, gapmax:5},
MA15: {top: 366, bot: 280, base: 8, win: 39, winbase: 23, candia: 17.1, spacer: 17, dia: 14, gapmin:0, gapmax:5},
VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5},
},
"DIL2": {
MA02: {top: 345, bot: 354, base: 7, win: 38, winbase: 53, candia: 21, spacer: 22.6, dia: 21, gapmin:0, gapmax:5},
MA6: {top: 342, bot: 311, base: 7, win: 39, winbase: 52, candia: 23.4, spacer: 23.1, dia: 21, gapmin:3, gapmax:5},
MA7: {top: 342, bot: 361, base:11, win: 39, winbase: 46, candia: 35.8, spacer: 35.6, dia: 32, gapmin:0, gapmax:5},
MA10: {top: 605, bot: 0, base:11, win: 0, winbase: 6, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:2},
MA11: {top: 345, bot: 277, base: 8, win: 39, winbase: 22, candia: 17.1, spacer: 17, dia: 14, gapmin:0, gapmax:5},
MA15: {top: 345, bot: 277, base: 8, win: 39, winbase: 22, candia: 17.1, spacer: 17, dia: 14, gapmin:0, gapmax:5},
VARIOX: {top: 473, bot: 0, base: 8, win: 0, winbase: 8, candia: "44?", spacer: 43.5, dia: 40, gapmin:0, gapmax:5},
},
}
var dils = {
"DIL3/DIL4": {sealmix: 311},
"DIL2": {sealmix: 290},
}
var vtis = {
MA02: {motor: 160, sample: 1245, edge: 968, vtibot: 1338},
MA6: {motor: 160, sample: 1309, edge: 1078, vtibot: 1389},
MA7: {motor: 160, sample: 1357, edge: 0, vtibot: 1426},
MA10: {motor: 160, sample: 1115, edge: 0, vtibot: 1222}, // if ever we use a shorter can, be aware of the nv motor sticking out at the top!
MA11: {motor: 160, sample: 1302, edge: 1080, vtibot: 1356},
MA15: {motor: 160, sample: 1294, edge: 1078, vtibot: 1433},
VARIOX: {motor: 0, sample: 1068, edge: 0, vtibot: 1138},
}
</script>
<style>
table.graph td {
border-spacing: 0px;
}
input {
text-align: right;
}
.important {
border-style:solid;
border-color:#ff0;
background-color:#fff;
}
.rel {
position: relative;
}
.candia { position: absolute; top:550px; left:120px;}
.extmax { position: absolute; top:600px; left:170px;}
.allmeas { display: none; }
.straight { display: none; }
.edged { display: none; }
.withwin { display: none; }
@media print {
h2, hr, .noprint { display: none; }
}
</style>
<script>
var can;
var vti;
var dil;
var vtiselect = "";
var dilselect = "DIL3/DIL4";
var motor = 0;
function putout(name, value) {
//console.log(name);
document.getElementById(name).innerHTML = value;
}
function calc() {
for (el of document.getElementsByClassName("allmeas")) {
el.style.display = "block";
}
var edge = vti.edge;
if (edge) {
edge += motor;
}
var vtibot = vti.vtibot + motor;
var sample = vti.sample + motor;
var bottom = can.top + can.bot - dil.sealmix;
var winmin = bottom + can.gapmax - can.winbase - can.win;
var winmax = bottom + can.gapmin - can.winbase;
var center = (winmin + winmax) / 2;
if (can.bot) {
s_display = "none";
e_display = "block";
} else {
s_display = "block";
e_display = "none";
}
for (el of document.getElementsByClassName("straight")) {
el.style.display = s_display;
}
for (el of document.getElementsByClassName("edged")) {
el.style.display = e_display;
}
if (edge) {
var sammin = can.top + Math.max(-edge, can.bot - vtibot) + sample - dil.sealmix + can.gapmax;
putout("edge", "<" + edge);
} else {
var sammin = bottom + sample - vtibot + can.gapmax;
putout("edge", "");
}
var extmax = bottom - can.base + can.gapmin;
if (can.win > 0) {
putout("winmin", ">" + winmin);
putout("winmax", "<" + winmax);
w_display = "block";
} else {
putout("winmin", "");
putout("winmax", "");
w_display = "none";
}
for (el of document.getElementsByClassName("withwin")) {
el.style.display = w_display;
}
putout("gapmin", ">" + can.gapmin);
putout("gapmax", "<" + can.gapmax);
putout("sammin", ">" + sammin);
putout("sample", sample);
putout("extmax", "<" + extmax);
putout("vtibot", "<" + vtibot);
putout("dia", "<" + can.dia);
document.getElementById("vti_label").innerHTML = vtiselect;
document.getElementById("dil_label").innerHTML = dilselect;
if (motor > 0) {
document.getElementById("motor_label").innerHTML = "with sample rotator";
} else {
document.getElementById("motor_label").innerHTML = "no sample rotator";
}
console.log("calc");
}
function setmot(inp) {
motor = parseFloat(inp.value);
calc();
//console.log("motor", motor);
}
function setvti(name) {
//console.log(name);
vtiselect = name;
vti = vtisvtiselect?;
motor = vti.motor;
document.getElementById("motor").value = motor;
can = cansdilselect?name?;
if (can) {
for (var property in can) {
//console.log(property);
document.getElementById(property).innerHTML = canproperty?;
}
}
calc();
return;
}
function setdil(name) {
dilselect = name;
dil = dilsdilselect?;
//console.log(dilselect, dil);
if (dil) {
for (var property in dil) {
//console.log(property);
document.getElementById(property).innerHTML = dilproperty?;
}
}
if (vtiselect != "") {
calc();
}
}
function init() {
setdil("DIL3/DIL4");
}
function do_print() {
var stored = ;
var mainsvg = document.getElementById("mainsvg");
var svglist = document.getElementById("svglist");
var first = ;
setdil(dilselect);
for (vtiname in cansdilselect?) {
setvti(vtiname);
stored.push(mainsvg.cloneNode(true));
}
for (var i=0; i < stored.length; i++) {
svglist.appendChild(storedi?);
}
var firstpart = document.getElementById("firstpart");
firstpart.style.display = "none";
print();
}
setTimeout(init, 0);
</script>
<div id=firstpart>
<div class=noprint>
<form>
<input type="radio" name=d onClick="setdil('DIL3/DIL4');" checked=true>DIL3/DIL4
<input type="radio" name=d onClick="setdil('DIL2');">DIL2<br>
<input type="radio" name=m onClick="setvti('MA02');">MA02
<input type="radio" name=m onClick="setvti('MA6');">MA6
<input type="radio" name=m onClick="setvti('MA7');">MA7
<input type="radio" name=m onClick="setvti('MA10');">MA10
<input type="radio" name=m onClick="setvti('MA11');">MA11
<input type="radio" name=m onClick="setvti('MA15');">MA15
<input type="radio" name=m onClick="setvti('VARIOX');">VARIOX
<input type="button" name=list onClick="do_print();" value="print all vtis for this stick">
</form>
sample rotator length:
<input type="text" id=motor value=0 size=4 onchange='setmot(this);'> <br>
</div>
<svg width="1170" height="350" xmlns="http://www.w3.org/2000/svg" id=mainsvg>
<metadata id="metadata5">image/svg+xml</metadata>
<g>
<title>background</title>
<rect fill="none" id="canvas_background" height="342" width="1026" y="-1" x="-1"/>
</g>
<g>
<title>Layer 1</title>
<text fill="#000" stroke="#000" stroke-width="0" x="0" y="60" id="vti_label" font-size="60" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text>
<path id="still_exch1" d="m258,140l18,0l0,-14l39,0l0,26l36,0l0,-20l27,0l0,30l30,0l0,-20l80,0l0,20l20,0l0,20l-20,0l0,20l-80,0l0,-20l-30,0l0,30l-27,0l0,-20l-36,0l0,26l-39,0l0,-14l-18,0" stroke-opacity="null" stroke="#000" fill="#cccccc"/>
<path fill="#cccccc" stroke="#000" d="m39,100l180,0l0,2l40,3l0,130l-40,3l0,2l-180,0" id="top_seal"/>
<path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,3l400,0l0,22l318,0l0,86l-318,0l0,22l-400,0l-38,2l0,3l445,0l0,-21l182,0l4,-4l99,0l4,4l32,0l0,-98l-32,0l-4,4l-99,0l-4,-4l-182,0l0,-21l-445,0l0,2" id="can" class="edged"/>
<path fill="#cccccc" stroke="#000" stroke-opacity="null" d="m228,102l38,3l400,0l1,0l318,0l0,130l-318,0l-1,0l-400,0l-38,2l0,3l445,0l1,0l182,0l4,0l99,0l4,0l32,0l0,-140l-32,0l-4,0l-99,0l-4,0l-182,0l-1,0l-445,0l0,2" id="can2" class="straight"/>
<path id="samplerod" d="m563,160l340,0l0,20l-340,0" stroke-opacity="null" stroke="#000" fill="#cccccc"/>
<path id="mix" d="m508,120l55,0l0,100l-55,0l0,-100" stroke-opacity="null" stroke="#000" fill="#cccccc"/>
<ellipse fill="#ccc" stroke="#000000" stroke-opacity="null" fill-opacity="null" cx="894" cy="170" id="sampleball" rx="20" ry="20"/>
<text fill="#000000" stroke="#000" stroke-width="0" x="875" y="173" id="sample_text" font-size="12" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">sample</text>
<g id="win_gr" class="withwin">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m860,138l0,-6l0,12l0,-6l98,0l0,-6l0,13l0,-6" id="win_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="909" y="128" width="30" height="20" id="win_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="win" y="143" x="924" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">00</text>
</g>
<text fill="#000000" stroke="#000" stroke-width="0" x="524.5" y="142.5" id="svg_2" font-size="12" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">mix.</text>
<text fill="#000000" stroke="#000" stroke-width="0" x="514.5" y="159.5" id="svg_3" font-size="12" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">chamber</text>
<g id="cantop_gr" class="allmeas">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l444,0l0,-6l0,12l0,-6" id="cantop_line" class="edged"/>
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m228,261l0,-6l0,12l0,-6l766,0l0,-6l0,12l0,-6" id="cantop_line2" class="straight"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="410" y="251" width="40" height="20" id="cantop_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="top" y="266" x="430" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">000</text>
</g>
<g id="canbot_gr" class="edged">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m672,246l0,-6l0,12l0,-6l322,0l0,-6l0,12l0,-6" id="canbot_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="817" y="236" width="40" height="20" id="canbot_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="bot" y="251" x="837" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f" class="edged">000</text>
</g>
<g id="sealmix_gr" class="allmeas">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m219,214l0,-6l0,12l0,-6l344,0l0,-6l0,12l0,-6" id="sealmix_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="409" y="204" width="40" height="20" id="sealmix_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="sealmix" y="219" x="429" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">000</text>
</g>
<g id="winbase_gr" class="withwin">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m958,149l0,-6l0,12l0,-6l36,0l0,-6l0,12l0,-6" id="winbase_line"/>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="winbase" y="155" x="997" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">00</text>
</g>
<g id="base_gr" class="allmeas">
<path fill="#000" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m984,180l0,-6l0,12l0,-6l10,0l0,-6l0,12l0,-6" id="base_line"/>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="base" y="190" x="997" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">0</text>
</g>
<rect stroke="#ffffff" fill="#ffffff" stroke-width="null" x="210.5" y="290.5" width="53" height="42" id="svg_15"/>
<path id="flange" d="m0,90l24,0l6,-12l8,0l0,180l-8,0l-6,-12l-24,0" stroke="#000" fill="#ccc"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="flange_line" y2="331" x2="38" y1="200" x1="38" stroke-width="0.5" fill="none" class="allmeas"/>
<text fill="#000000" stroke="#000" stroke-width="0" x="230.5" y="128.5" id="svg_1" font-size="12" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">seal</text>
<line stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="240" x2="219" y1="101" x1="219" stroke-width="0.5" fill="none" stroke="#000000" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="svg_4" y2="266.99999" x2="228" y1="101" x1="228" stroke-width="0.5" fill="none" class="allmeas"/>
<g id="gap_gr" class="allmeas">
<path fill="#00f" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m219,166l0,-6l0,12l0,-6l9,0l0,-6l0,12l0,-6" id="gap_line"/>
<text font-family="Helvetica, Arial, sans-serif" text-anchor="start" font-size="18" id="gapmax" y="160" x="231" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f"><0</text>
<text font-family="Helvetica, Arial, sans-serif" text-anchor="end" font-size="18" id="gapmin" y="160" x="216" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">>0</text>
</g>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmin_meas" y2="143" x2="860" y1="0" x1="860" stroke-width="0.5" fill="none" class="withwin"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="mix_meas" y2="124" x2="563" y1="10" x1="563" stroke-width="0.5" fill="none" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_meas" y2="285" x2="894" y1="57" x1="894" stroke-width="0.5" fill="none" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="winmax_meas" y2="157" x2="958" y1="24" x1="958" stroke-width="0.5" fill="none" class="withwin"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="ext_meas" y2="299" x2="994" y1="218" x1="994" stroke-width="0.5" fill="none" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="edge_meas" y2="330" x2="672" y1="250" x1="672" stroke-width="0.5" fill="none" class="edged"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="base_meas" y2="130" x2="984" y1="68" x1="984" stroke-width="0.5" fill="none" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia1" y2="150" x2="936" y1="150" x1="896" stroke-width="0.5" fill="none" class="allmeas"/>
<line stroke="#000000" stroke-linecap="null" stroke-linejoin="null" id="sample_dia2" y2="190" x2="936" y1="190" x1="896" stroke-width="0.5" fill="none" class="allmeas"/>
<path id="svg_5" d="m162.5,82.5l-26.5,59.5l29,52l-26,60" fill-opacity="null" stroke-width="20" stroke="#ffffff" fill="none"/>
<path id="svg_6" d="m175.5,82.5l-26.5,59.5l29,52l-26,60" fill-opacity="null" stroke-width="20" stroke="#ffffff" fill="none"/>
<path id="svg_16" d="m162.5,82.5l-26.5,59.5l29,52l-26,60" fill-opacity="null" stroke="#000000" fill="none"/>
<path id="svg_17" d="m175.5,82.5l-26.5,59.5l29,52l-26,60" fill-opacity="null" stroke="#000000" fill="none"/>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_7" y="62.5" x="315.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" class="allmeas">make sure stick will fit into vti</text>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_8" y="29.5" x="233.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cccc" class="withwin">make sure sample is within can window</text>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_9" y="88.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc00cc" class="allmeas">make sure sample does not touch can bottom</text>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_12" y="316.5" x="181.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00cc00" class="allmeas">verify stick will fit into vti (with closed can)</text>
<g id="winmin_gr" class="allmeas">
<path fill="#000" stroke="#0cc" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,13l0,-6l0,12l0,-6l297,0l0,-6l0,12l0,-6" id="winmin_line" class="withwin"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="656" y="0" width="70" height="25" id="winmin_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="winmin" y="20" x="691" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#0cc" fill="#0cc">>000</text>
</g>
<g id="sammin_gr" class="allmeas">
<path fill="#fff" stroke="#c00" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,61l0,-6l0,12l0,-6l331,0l0,-6l0,12l0,-6" id="sammin_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="696" y="48" width="70" height="25" id="sammin_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="sammin" y="68" x="731" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#c00" fill="#c00">>000</text>
</g>
<g id="winmax_gr" class="withwin">
<path fill="#fff" stroke="#0cc" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,33l0,-6l0,12l0,-6l395,0l0,-6l0,12l0,-6" id="winmax_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="746" y="20" width="70" height="25" id="winmax_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="winmax" y="40" x="781" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#0cc" fill="#0cc"><000</text>
</g>
<g id="extmax_gr" class="allmeas">
<path fill="#fff" stroke="#c0c" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m563,86l0,-6l0,12l0,-6l421,0l0,-6l0,12l0,-6" id="extmax_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="781" y="73" width="70" height="25" id="extmax_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="extmax" y="93" x="816" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#c0c" fill="#c0c"><000</text>
</g>
<g id="sample_gr" class="allmeas">
<path fill="#fff" stroke="#c00" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m39,279l0,-6l0,12l0,-6l855,0l0,-6l0,12l0,-6" id="sample_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="787" y="266" width="60" height="25" id="sample_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="sample" y="286" x="817" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#c00" fill="#c00">0000</text>
</g>
<g id="edge_gr" class="edged">
<path fill="#fff" stroke="#0c0" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m39,321l0,-6l0,12l0,-6l633,0l0,-6l0,12l0,-6" id="edge_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="546" y="310" width="80" height="25" id="edge_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="edge" y="330" x="586" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#0c0" fill="#0c0"><0000</text>
</g>
<rect fill="#ffffff" stroke-width="null" x="240.5" y="268.5" width="335.00002" height="27" id="svg_11" stroke="#ffffff" class="allmeas">adjust top flange - center sample in cryo</rect>
<text text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="18" id="svg_10" y="285.5" x="245.5" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#cc0000" class="allmeas">adjust top flange - center sample in cryo</text>
<g id="vtibot_gr" class="allmeas">
<path fill="#fff" stroke="#0c0" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m39,298l0,-6l0,12l0,-6l955,0l0,-6l0,12l0,-6" id="vtibot_line"/>
<rect fill="#fff" stroke="#000" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="897" y="285" width="80" height="25" id="vtibot_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="24" id="vtibot" y="305" x="937" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#0c0" fill="#0c0"><0000</text>
</g>
<g id="candia_gr" class="allmeas">
<path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m756,127l-6,0l12,0l-6,0l0,86l-6,0l12,0l-6,0" id="candia_line" class="edged"/>
<path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m756,105l-6,0l12,0l-6,0l0,130l-6,0l12,0l-6,0" id="candia_line2" class="straight"/>
<rect fill="#ccc" stroke="#ccc" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="726" y="161" width="60" height="18" id="candia_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="candia" y="176" x="751" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f"><00</text>
</g>
<g id="spacer_gr" class="allmeas">
<path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m816,130l-6,0l12,0l-6,0l0,80l-6,0l12,0l-6,0" id="spacer_line" class="edged"/>
<path fill="#fff" stroke="#00f" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m816,108l-6,0l12,0l-6,0l0,124l-6,0l12,0l-6,0" id="spacer_line2" class="straight"/>
<rect fill="#ccc" stroke="#ccc" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="786" y="161" width="60" height="18" id="spacer_bg"/>
<text text-anchor="end" font-family="Helvetica, Arial, sans-serif" font-size="18" id="spacer" y="176" x="826" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#00f" fill="#00f">00.0</text>
</g>
<g id="dia_gr" class="allmeas">
<path fill="#fff" stroke="#c00" stroke-width="2" stroke-opacity="null" fill-opacity="null" d="m936,150l-6,0l12,0l-6,0l0,40l-6,0l12,0l-6,0" id="dia_line"/>
<rect fill="#fff" stroke="#fff" stroke-width="0" stroke-opacity="null" fill-opacity="null" x="916" y="161" width="40" height="18" id="candia_bg"/>
<text text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="18" id="dia" y="176" x="931" fill-opacity="null" stroke-opacity="null" stroke-width="0" stroke="#c00" fill="#c00"><00</text>
</g>
<path fill="#7f7f7f" stroke="#000000" stroke-width="0.5" stroke-opacity="null" d="m828,129l12,12l0,58l-12,12l0,-82z" id="spacer_shape" class="edged"/>
<path fill="#7f7f7f" stroke="#000000" stroke-width="0.5" stroke-opacity="null" d="m828,107l12,12l0,102l-12,12l0,-126z" id="spacer_shape" class="straight"/>
<text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="173" id="svg_18" font-size="14" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve">sliding top flange</text>
<text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="1240" id="dil_label" font-size="48" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve"></text>
<text transform="rotate(-90 17 169)" fill="#000" stroke="#000" stroke-width="0" x="17" y="213" id="motor_label" font-size="14" font-family="Helvetica, Arial, sans-serif" text-anchor="middle" xml:space="preserve"></text>
</g>
</svg>
</div>
<div id=svglist>
</div>
</html>
This particular version was published on 22-Jun-2022 07:12:57 UTC by MarkusZolliker.
|