source: t29-www/en/devices/punchcard-sorter.php @ 1080

Last change on this file since 1080 was 296, checked in by sven, 12 years ago

Umfangreiche Abarbeitung der Todo-Liste für das Launching der neuen Website.
Insbesondere wurden alle englischen Geräteseiten in das neue System übersetzt (wurden vergessen), die Univac-Seiten mussten dafür auch noch umbenannt werden.
Dafür wurde auch die englische Navigation um die Extraseiten vervollständigt.

Ferner:

  • Angefangen: Hostsystem zur Implementierung des aus v5 javascript-basierten hostinfo-Systems (aber mächtiger, mit server- und clientseitigen Hooks). Findet derzeit nur Verwendung in hostspezifischer Veränderung der Template-Konfiguration, etwa auf Heriberts Computer. (Mit den momentanen Einstellungen wird das Bearbeiten auf Heriberts Computer derzeit wieder nicht funktionieren)
  • Derzeit sind (kurzfristig) alle Extraseiten im Menü sichtbar, wenn man es aufklappt.
  • Einige Bugs beseitigt (telefunken-t40w.js, etc.)

Es gibt zwei Extraseiten, bei denen die Bilder gelöscht wurden: LAB 8e und Telefunken 650. Wenn sie nicht mehr verlinkt werden, sollten die Extraseiten auch gelöscht und aus dem Menü entfernt werden.

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1<?php
2        $seiten_id = 'punchcard-sorter';
3        $version = '$Id';
4        $titel = 'The function of the punch card sorter';
5       
6        require '../../lib/technikum29.php';
7?>
8
9<h2><?php print $title; ?></h2>
10
11<p>Only people who are born prior to 1960 may have knowledge of the punch card machines. We would like to give you an example of these historic machines' functionality.</p>
12
13<p>If we had a list of customer names to be sorted, we would first give each customer a three digit customer number. We can then sort this list in numerical (ascending) order or sort by their names.</p>
14
15<p>If we would sort the customer names manually, the cards would initially be sorted by the 100's decimal place into 10 piles. Subsequently each of the 10 piles would be sorted by the 10's decimal place into 10 piles. Finally each of the piles would be sorted by the 1's decimal place.</p>
16
17<div class="box center">
18        <img src="/shared/photos/rechnertechnik/grafiken/lochkartensortierer.en.gif" width="700" height="531" alt="Diagram about the function of the card sorter" />
19</div>
20
21<p>Machine sorting can not use this procedure since we would need an unlimited number of sorting compartments (pockets). Thus it sorts the other way around, from the 1's decimal place to the 100's decimal place. In summary, in each step (2-4, according to the diagram), there would be a maximum of only 10 card decks per sort.</p>
22
23<p>Summing up, this yields the basic rules of mechanical sorting, as the punch card collator uses them:</p>
24
25<ul>
26        <li>The elements which have to be sorted are treated as decimal numbers, each number is broken down in its decimal places</li>
27        <li>The sorting algorithm starts with the least significant digit and ends with the most significant one</li>
28        <li>The sorting algorithm needs as many loops as the number of digits in each number (three loops in this case)</li>
29</ul>
Note: See TracBrowser for help on using the repository browser.
© 2008 - 2013 technikum29 • Sven Köppel • Some rights reserved
Powered by Trac
Expect where otherwise noted, content on this site is licensed under a Creative Commons 3.0 License