Browse Source

dampfmaschine saved

Thomas Buck 9 months ago
parent
commit
0d0b98c355

+ 73
- 0
input/blog/2023/2023_07_29_dampfmaschine.md View File

@@ -0,0 +1,73 @@
1
+title: Blog
2
+post: Saving the steam engine: Part 1
3
+description: Storing the machine and the trailers
4
+date: 2023-07-29
5
+comments: true
6
+parent: steam
7
+---
8
+
9
+You may have seen my Grandpas [steam engine](dampfmaschine.html) here on this website.
10
+Unfortunately he died in November 2016 ([1](img/traueranzeige_seidl_ernst_1.png), [2](img/traueranzeige_seidl_ernst_2.png), [3](img/traueranzeige_seidl_ernst_3.png)).
11
+My Grandma, his widow, also died in October 2021 ([1](img/traueranzeige_seidl_katharina_1.png), [2](img/traueranzeige_seidl_katharina_2.png)).
12
+Because they had a "joint will", this was the point where I officially inherited the steam engine.
13
+
14
+It took nearly two more years, but now the house has been sold and the time has come to take the machine somewhere else.
15
+
16
+Fortuantely my friend Igor was quick to help out with his car.
17
+It has a trailer hitch, so I rented a trailer from a nearby gas station and we got to work.
18
+
19
+<!--%
20
+lightgallery([
21
+    [ "img/dampf_2023_07_4.jpg", "Moving machine onto trailer" ],
22
+    [ "img/dampf_2023_07_pan_1.jpg", "Panorama of machine on trailer" ],
23
+])
24
+%-->
25
+
26
+Todays mission was getting out all the big stuff.
27
+So the machine itself, as well as the small "seat" and the two larger trailers.
28
+
29
+<!--%
30
+lightgallery([
31
+    [ "img/dampf_2023_07_5.jpg", "Everything on the trailer, right side" ],
32
+    [ "img/dampf_2023_07_6.jpg", "Everything on the trailer, left side" ],
33
+    [ "img/dampf_2023_07_7.jpg", "Everything on the trailer, front side" ],
34
+])
35
+%-->
36
+
37
+Of course this was not the first time the machine had to be moved.
38
+So matching aluminium rails were already prepared, with notches cut out, to hold on to the trailers edge.
39
+Using the gearbox and flywheel, maneuvering the machine onto the trailer is actually pretty simple.
40
+
41
+<!--%
42
+lightgallery([
43
+    [ "img/dampf_2023_07_2.jpg", "Large trailer hanging on hoist" ],
44
+    [ "img/dampf_2023_07_pan_2.jpg", "Panorama of trailer on hoist" ],
45
+])
46
+%-->
47
+
48
+Getting the trailers down from the garage attic was also not difficult, thanks to more electric hoists installed all over the house.
49
+
50
+<!--%
51
+lightgallery([
52
+    [ "img/dampf_2023_07_1.jpg", "The old 'Dampfschuppen' shed" ],
53
+    [ "img/dampf_2023_07_9.jpg", "Stored in new place" ],
54
+])
55
+%-->
56
+
57
+And here is one last look into the steam engine shed, affectionately called "Dampfschuppen", as well as the new storage place for the machine I rented.
58
+
59
+Another trip to the house will have to follow soon, to get all the smaller parts, tools, documents, etc.
60
+
61
+## More Pictures
62
+<a class="anchor" name="more_pictures"></a>
63
+
64
+<div class="collapse">Some more photographs I didn't use above.</div>
65
+<div class="collapsecontent">
66
+<!--%
67
+lightgallery([
68
+    [ "img/dampf_2023_07_pan_3.jpg", "Panorama of trailer on hoist (2)" ],
69
+    [ "img/dampf_2023_07_3.jpg", "Moving machine onto trailer (2)" ],
70
+    [ "img/dampf_2023_07_8.jpg", "Stored in new place (2)" ],
71
+])
72
+%-->
73
+</div>

+ 16
- 0
input/projects/dampfmaschine.md View File

@@ -13,6 +13,14 @@ Of course I learned heating and driving the machine from an early age.
13 13
 In the summers, we regularly drove around the neighborhood where my grandfather lived, for the joy of the neighboring children.
14 14
 We also visited some [steam fairs in Kürnbach](https://www.volksfeste-in-deutschland.de/kuernbacher-dampffest-in-bad-schussenried.html), as well as holding our own at the small 'pub' my grandmother ran.
15 15
 
16
+## Links
17
+
18
+Here are all other pages related to the operation of the steam engine.
19
+
20
+<!--%
21
+printSteamMenuEnglish()
22
+%-->
23
+
16 24
 ## Videos
17 25
 
18 26
 Some videos, of both the mechanics as well as driving the steam engine.
@@ -121,6 +129,14 @@ Selbstverständlich wurde mir bereits in Kindheitstagen das Anheizen und Fahren
121 129
 Regelmäßig fuhren wir im Sommer in der Siedlung um das Haus meines Großvaters, als große Attraktion für alle Nachbarskinder der Gegend.
122 130
 Außerdem besuchten wir einige [Dampffeste in Kürnbach](https://www.volksfeste-in-deutschland.de/kuernbacher-dampffest-in-bad-schussenried.html) und veranstalteten eigene an der kleinen Wirtschaft meiner Großmutter.
123 131
 
132
+## Links
133
+
134
+Hier sind alle anderen Seiten im Zusammenhang mit dem Betrieb der Dampfmaschine.
135
+
136
+<!--%
137
+printSteamMenuDeutsch()
138
+%-->
139
+
124 140
 ## Videos
125 141
 
126 142
 Einige Videos, sowohl von der Technik der Dampfmaschine als auch dem Fahrbetrieb.

+ 10
- 0
macros.py View File

@@ -226,6 +226,16 @@ def printRobotMenuDeutsch():
226 226
     for p in mpages:
227 227
         printMenuItem(p, False, False, False, False, "0", "de")
228 228
 
229
+def printSteamMenuEnglish():
230
+    mpages = [p for p in pages if p.get("parent", "") == "steam" and p.lang == "en"]
231
+    mpages.sort(key=lambda p: [p.get("date", "9999-01-01")], reverse = True)
232
+    for p in mpages:
233
+        printMenuItem(p, False, False, False, True)
234
+
235
+def printSteamMenuDeutsch():
236
+    # TODO show german pages, or english pages when german not available
237
+    printSteamMenuEnglish()
238
+
229 239
 # -----------------------------------------------------------------------------
230 240
 # lightgallery helper macro
231 241
 # -----------------------------------------------------------------------------

BIN
static/img/dampf_2023_07_1.jpg View File


BIN
static/img/dampf_2023_07_1_small.jpg View File


BIN
static/img/dampf_2023_07_2.jpg View File


BIN
static/img/dampf_2023_07_2_small.jpg View File


BIN
static/img/dampf_2023_07_3.jpg View File


BIN
static/img/dampf_2023_07_3_small.jpg View File


BIN
static/img/dampf_2023_07_4.jpg View File


BIN
static/img/dampf_2023_07_4_small.jpg View File


BIN
static/img/dampf_2023_07_5.jpg View File


BIN
static/img/dampf_2023_07_5_small.jpg View File


BIN
static/img/dampf_2023_07_6.jpg View File


BIN
static/img/dampf_2023_07_6_small.jpg View File


BIN
static/img/dampf_2023_07_7.jpg View File


BIN
static/img/dampf_2023_07_7_small.jpg View File


BIN
static/img/dampf_2023_07_8.jpg View File


BIN
static/img/dampf_2023_07_8_small.jpg View File


BIN
static/img/dampf_2023_07_9.jpg View File


BIN
static/img/dampf_2023_07_9_small.jpg View File


BIN
static/img/dampf_2023_07_pan_1.jpg View File


BIN
static/img/dampf_2023_07_pan_1_small.jpg View File


BIN
static/img/dampf_2023_07_pan_2.jpg View File


BIN
static/img/dampf_2023_07_pan_2_small.jpg View File


BIN
static/img/dampf_2023_07_pan_3.jpg View File


BIN
static/img/dampf_2023_07_pan_3_small.jpg View File


BIN
static/img/traueranzeige_seidl_ernst_1.png View File


BIN
static/img/traueranzeige_seidl_ernst_2.png View File


BIN
static/img/traueranzeige_seidl_ernst_3.png View File


BIN
static/img/traueranzeige_seidl_katharina_1.png View File


BIN
static/img/traueranzeige_seidl_katharina_2.png View File


Loading…
Cancel
Save