<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hanna+Bremerich</id>
	<title>Medien Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hanna+Bremerich"/>
	<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/Special:Contributions/Hanna_Bremerich"/>
	<updated>2026-05-16T05:58:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Hanna_Bremerich,_Fiene_Freist&amp;diff=140328</id>
		<title>Hanna Bremerich, Fiene Freist</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Hanna_Bremerich,_Fiene_Freist&amp;diff=140328"/>
		<updated>2025-02-20T16:20:00Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Text about coding stuff&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=&#039;&#039;&#039;&amp;lt;big&amp;gt;The Verdant Symphony&amp;lt;/big&amp;gt;&#039;&#039;&#039;=&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
 This project fuses nature, technology, and music into a unique blend. Six plants, equipped with gas sensors, guide motors that pluck guitar strings, each producing an individual tone. The result is a living symphony, where the natural signals of plants shape a new fusion of nature, sound and the digital world.[[File:The Verdant Symphony 1.jpg|center|thumb|954x954px]]&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Brainstorming and concept development==&lt;br /&gt;
[[File:Seminar.jpg|thumb|438x438px]]&lt;br /&gt;
Inspired by some exemplary works presented during the first two seminar sessions, Hanna quickly came up with the idea of having plants play the guitar together. I was immediately fascinated by this idea and very grateful that Hanna wanted to collaborate with me. Together, we developed the concept further week by week. I documented and organized this thought process and the resulting ideas on a Miro board:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;[https://miro.com/welcomeonboard/RXp4WGw5Y0lxU0VpK0RRUHF3QWMyYmIvUmlLYlA1cXkxcTJ4UVBDM1BLT2s3dDB6VnovR2dpN1hEd2pYWG9PeUpZZU1PV3RsVERIWUJFOGtkcUhPem1TVHBsNVJPZlA3RXozeC9NbVR5QVlmMHhOMUxLd3VXOHY4d1dOK3NVOXVyVmtkMG5hNDA3dVlncnBvRVB2ZXBnPT0hdjE=?share_link_id=117672028285 Miro Board]&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Initially, the plan was for two plants to interact and control the guitar. Later, we considered having a guitar and a computer-generated voice play music together, but we eventually abandoned this idea.&lt;br /&gt;
In the end, we settled on the concept of six plants, each playing a single guitar string, controlled by the gas emissions of the respective plant.&lt;br /&gt;
This idea was then presented during the midterm presentation. Hanna had created an initial version of the code, while I had already started working on the structural implementation of a mount for the motors and had designed a construction plan for it. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;(written by Fiene)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Technical implementation==&lt;br /&gt;
[[File:Seminar 2.jpg|left|thumb|396x396px]]&lt;br /&gt;
&lt;br /&gt;
===Embedded systems development ===&lt;br /&gt;
&lt;br /&gt;
During our project, we used Visual Studio Code and Arduino to program and control motors based on sensor data. Our first challenge was to determine how the motor should move. We aimed to ensure that the motors moved only once per activation, producing a single tone. To achieve this, I created an initial test code to establish how to instruct the motor to move right when it was on the left and vice versa.&lt;br /&gt;
&lt;br /&gt;
Next, we needed to develop a pattern to simulate incoming sensor data. The second test code introduced random numbers to help us simulate a trigger value for the motors. This was combined with our previous motor movement code to create a preliminary response system.&lt;br /&gt;
&lt;br /&gt;
I then worked on enabling two motors to move independently. To accomplish this, I implemented two different random numbers so that each motor would move at a different &amp;quot;trigger value&amp;quot;. Adjustments were made to delay times to introduce a more natural, randomized effect.&lt;br /&gt;
&lt;br /&gt;
To acquire real sensor data, we opted for an MQ-2 gas sensor, which detects combustible gases. We initially attempted to retrieve analog output values from one sensor. Since the raw sensor data wasn’t as representative as we needed, I decided to convert the readings into ppm (parts per million) for more meaningful analysis.&lt;br /&gt;
&lt;br /&gt;
The next step was to replace our previously used random numbers with actual gas concentration values measured by the sensor. I then expanded the system to incorporate six sensors and six motors, which required multiple iterations to perfect. A major challenge was implementing all sensor values, motors, and their corresponding variables into a function that allowed each sensor-motor pair to operate independently. We replaced the general delay time in the loop with millis() to enhance achieve that.&lt;br /&gt;
[[File:SG90 9g Micro Servo.jpg|thumb|273x273px]]&lt;br /&gt;
After measuring the gas concentrations produced by plants over time, I made several adjustments to optimize the installation. Each motor was assigned an individual trigger value based on the gas readings from its respective sensor. Since sensor readings were taken at short intervals and did not fluctuate significantly, motors would have been triggered too frequently, leading to excessive noise. To mitigate this, I introduced individual delay times for each motor before they could be triggered again. To create a more natural and less predictable sound pattern, I introduced a &amp;quot;random factor&amp;quot;. The motor&#039;s delay time was then multiplied by this factor which was recalculated with each sensor reading, ensuring a more varied and pleasant auditory experience.&lt;br /&gt;
&lt;br /&gt;
Debugging print commands were added to the code to help monitor sensor functionality when connected to a computer. These were primarily for troubleshooting and not necessary for the final public installation. Although the code could have been optimized for brevity, I chose to keep it more detailed to maintain a clear overview of all sensors, motors, and timing adjustments. In the end, our system successfully produced tones in a random frequency, creating a dynamic and immersive experience.&lt;br /&gt;
&lt;br /&gt;
=== Technology ===&lt;br /&gt;
&lt;br /&gt;
* ESP32&lt;br /&gt;
* MQ-2 sensor for combustible gas&lt;br /&gt;
* SG90 9g Micro Servo&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot;&amp;gt;&lt;br /&gt;
File:Bread board.jpg&lt;br /&gt;
File:SG90 9g Micro Servo 2.jpg&lt;br /&gt;
File:SG90 9g Micro Servo 3.jpg&lt;br /&gt;
File:Mq-2 sensor for combustible gas .jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Code ===&lt;br /&gt;
&lt;br /&gt;
===== For the platformio.ini: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;arduino&amp;quot;&amp;gt;&lt;br /&gt;
[env:esp32dev]&lt;br /&gt;
platform = espressif32&lt;br /&gt;
board = esp32dev&lt;br /&gt;
framework = arduino&lt;br /&gt;
lib_deps = roboticsbrno/ServoESP32@1.0.3&lt;br /&gt;
monitor_speed = 9600&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Fort he main.cpp: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;arduino&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;Arduino.h&amp;gt;&lt;br /&gt;
// include the servo library&lt;br /&gt;
#include &amp;lt;Servo.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
//  timing &lt;br /&gt;
unsigned long currentTime = 0;&lt;br /&gt;
&lt;br /&gt;
unsigned long lastTimeA = 0;&lt;br /&gt;
unsigned long lastTimeB = 0;&lt;br /&gt;
unsigned long lastTimeC = 0;&lt;br /&gt;
unsigned long lastTimeD = 0;&lt;br /&gt;
unsigned long lastTimeE = 0;&lt;br /&gt;
unsigned long lastTimeF = 0;&lt;br /&gt;
&lt;br /&gt;
const int baseServoDelayTimeA = 17300;&lt;br /&gt;
const int baseServoDelayTimeB = 11020;&lt;br /&gt;
const int baseServoDelayTimeC = 15400;&lt;br /&gt;
const int baseServoDelayTimeD = 12800;&lt;br /&gt;
const int baseServoDelayTimeE = 8400;&lt;br /&gt;
const int baseServoDelayTimeF = 6300;&lt;br /&gt;
&lt;br /&gt;
float randMultiplier = 1.0;&lt;br /&gt;
&lt;br /&gt;
long randNumber; &lt;br /&gt;
&lt;br /&gt;
//sensors &lt;br /&gt;
const float sensorTriggerValueA = 700;&lt;br /&gt;
const float sensorTriggerValueB = 520;&lt;br /&gt;
const float sensorTriggerValueC = 650;&lt;br /&gt;
const float sensorTriggerValueD = 880;&lt;br /&gt;
const float sensorTriggerValueE = 950;&lt;br /&gt;
const float sensorTriggerValueF = 1100;&lt;br /&gt;
&lt;br /&gt;
float getSensorValuePpm (int sensorPin);&lt;br /&gt;
&lt;br /&gt;
const int sensorA = 36;&lt;br /&gt;
const int sensorB = 39;&lt;br /&gt;
const int sensorC = 34;&lt;br /&gt;
const int sensorD = 35;&lt;br /&gt;
const int sensorE = 32;&lt;br /&gt;
const int sensorF = 33;&lt;br /&gt;
&lt;br /&gt;
float gasValueSensorA = getSensorValuePpm (sensorA);&lt;br /&gt;
float gasValueSensorB = getSensorValuePpm (sensorB);&lt;br /&gt;
float gasValueSensorC = getSensorValuePpm (sensorC);&lt;br /&gt;
float gasValueSensorD = getSensorValuePpm (sensorD);&lt;br /&gt;
float gasValueSensorE = getSensorValuePpm (sensorE);&lt;br /&gt;
float gasValueSensorF = getSensorValuePpm (sensorF);&lt;br /&gt;
&lt;br /&gt;
//servos &lt;br /&gt;
const int servoPinA = 19;&lt;br /&gt;
const int servoPinB = 18;&lt;br /&gt;
const int servoPinC = 05;&lt;br /&gt;
const int servoPinD = 17;&lt;br /&gt;
const int servoPinE = 16;&lt;br /&gt;
const int servoPinF = 04;&lt;br /&gt;
&lt;br /&gt;
Servo servoA;&lt;br /&gt;
Servo servoB;&lt;br /&gt;
Servo servoC;&lt;br /&gt;
Servo servoD;&lt;br /&gt;
Servo servoE;&lt;br /&gt;
Servo servoF;&lt;br /&gt;
&lt;br /&gt;
boolean isLeftA;&lt;br /&gt;
boolean isLeftB;&lt;br /&gt;
boolean isLeftC;&lt;br /&gt;
boolean isLeftD;&lt;br /&gt;
boolean isLeftE;&lt;br /&gt;
boolean isLeftF;&lt;br /&gt;
&lt;br /&gt;
//function declarations &lt;br /&gt;
void playSound(unsigned long &amp;amp;lastTime, int sensorPin, Servo &amp;amp;servo, float &amp;amp;gasValueSensor, boolean &amp;amp;isLeft, int baseServoDelayTime, float sensorTriggerValue);&lt;br /&gt;
&lt;br /&gt;
float getSensorValuePpm (int sensorPin);&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  analogSetAttenuation(ADC_11db);&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
&lt;br /&gt;
  servoA.attach(servoPinA);&lt;br /&gt;
  servoA.write(30);&lt;br /&gt;
  isLeftA = true;&lt;br /&gt;
&lt;br /&gt;
  servoB.attach(servoPinB);&lt;br /&gt;
  servoB.write(30);&lt;br /&gt;
  isLeftB = true;&lt;br /&gt;
&lt;br /&gt;
  servoC.attach(servoPinC);&lt;br /&gt;
  servoC.write(30);&lt;br /&gt;
  isLeftC = true;&lt;br /&gt;
&lt;br /&gt;
  servoD.attach(servoPinD);&lt;br /&gt;
  servoD.write(30);&lt;br /&gt;
  isLeftD = true;&lt;br /&gt;
&lt;br /&gt;
  servoE.attach(servoPinE);&lt;br /&gt;
  servoE.write(30);&lt;br /&gt;
  isLeftE = true;&lt;br /&gt;
&lt;br /&gt;
  servoF.attach(servoPinF);&lt;br /&gt;
  servoF.write(30);&lt;br /&gt;
  isLeftF = true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  currentTime = millis();&lt;br /&gt;
&lt;br /&gt;
  playSound(lastTimeA, sensorA, servoA, gasValueSensorA, isLeftA, baseServoDelayTimeA, sensorTriggerValueA);&lt;br /&gt;
  playSound(lastTimeB, sensorB, servoB, gasValueSensorB, isLeftB, baseServoDelayTimeB, sensorTriggerValueB);&lt;br /&gt;
  playSound(lastTimeC, sensorC, servoC, gasValueSensorC, isLeftC, baseServoDelayTimeC, sensorTriggerValueC);&lt;br /&gt;
  playSound(lastTimeD, sensorD, servoD, gasValueSensorD, isLeftD, baseServoDelayTimeD, sensorTriggerValueD);&lt;br /&gt;
  playSound(lastTimeE, sensorE, servoE, gasValueSensorE, isLeftE, baseServoDelayTimeE, sensorTriggerValueE);&lt;br /&gt;
  playSound(lastTimeF, sensorF, servoF, gasValueSensorF, isLeftF, baseServoDelayTimeF, sensorTriggerValueF);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//functions&lt;br /&gt;
&lt;br /&gt;
void playSound(unsigned long &amp;amp;lastTime, int sensorPin, Servo &amp;amp;servo, float &amp;amp;gasValueSensor, boolean &amp;amp;isLeft, int baseServoDelayTime, float sensorTriggerValue){&lt;br /&gt;
  &lt;br /&gt;
  //generate multiplier and adjust delaytime &lt;br /&gt;
  randMultiplier = 0.7 + (random(0, 341) / 100.0);&lt;br /&gt;
  int adjustedDelayTime = baseServoDelayTime * randMultiplier;&lt;br /&gt;
&lt;br /&gt;
  if (currentTime - lastTime &amp;gt;= adjustedDelayTime){&lt;br /&gt;
      // check if timing works&lt;br /&gt;
      Serial.print(&amp;quot;Random delayTime&amp;quot;);&lt;br /&gt;
      Serial.println(adjustedDelayTime);&lt;br /&gt;
      Serial.println(&amp;quot;Triggering sensor reaading&amp;quot;);&lt;br /&gt;
      gasValueSensor = getSensorValuePpm(sensorPin);&lt;br /&gt;
      // check sensor value &lt;br /&gt;
      Serial.print(&amp;quot;Sensor Value: &amp;quot;);&lt;br /&gt;
      Serial.println(gasValueSensor);&lt;br /&gt;
&lt;br /&gt;
        if (gasValueSensor &amp;gt; sensorTriggerValue){&lt;br /&gt;
          Serial.println(&amp;quot;Triggering servo&amp;quot;);&lt;br /&gt;
          // move servo to play sound&lt;br /&gt;
            if (isLeft == true){&lt;br /&gt;
              servo.write(0);&lt;br /&gt;
              isLeft = false;&lt;br /&gt;
              Serial.println(&amp;quot;right&amp;quot;);&lt;br /&gt;
            }&lt;br /&gt;
            else{&lt;br /&gt;
              servo.write(30);&lt;br /&gt;
              isLeft = true; &lt;br /&gt;
              Serial.println(&amp;quot;left&amp;quot;);&lt;br /&gt;
            }&lt;br /&gt;
            Serial.println(&amp;quot;Servo moved. Last Time updated.&amp;quot;);&lt;br /&gt;
          }&lt;br /&gt;
          // update lastTime&lt;br /&gt;
          lastTime = currentTime;&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
float getSensorValuePpm (int sensorPin) {&lt;br /&gt;
  float voltage = analogRead(sensorPin) * (5.0 / 1023.0);&lt;br /&gt;
  float RS_air = 10.0;&lt;br /&gt;
  float RL = 2.0;&lt;br /&gt;
  float ratio = RL / RS_air;&lt;br /&gt;
  float RS = ((5.0 / voltage) - 1.0) * RL;&lt;br /&gt;
  float ppm = 1000.0 * pow((RS / RS_air), ratio);&lt;br /&gt;
 return ppm;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;small&amp;gt;(written by Hanna)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Manual construction ==&lt;br /&gt;
[[File:Construction plan for the motor mount.jpg|thumb|340x340px]]&lt;br /&gt;
I was responsible for the structural and mechanical implementation of the project since my strengths lie far more in this area than in writing computer code. Additionally, unlike Hanna, I have the necessary resources at home to craft.&lt;br /&gt;
&lt;br /&gt;
We needed a mount that would allow the servo motors to hover above the guitar strings so they could pluck them individually. The servo motors had to be positioned at a certain distance from each other to avoid interfering with one another when striking the strings. We had already identified this issue through a cardboard prototype. Since guitar picks were to be attached to the motors, increasing the radius of the strike, it made sense to always leave two strings between those being played.[[File:Soldering.jpg|thumb|315x315px|left]]&lt;br /&gt;
&lt;br /&gt;
I decided to attach two motors to one bar. The construction sketch can be seen here:&lt;br /&gt;
&lt;br /&gt;
Since I couldn’t guarantee millimeter-precise construction, and factors like the surface, variations in the way the picks were attached, or different motor models could create height differences, it was necessary to allow for fine adjustments to the height of the mount. For this, I used special adjustment screws that allow the height of the mounting beams to be individually adjusted on both sides. Unlike regular screws, these have two types of threads: the upper thread remains fixed in the wood, while the lower thread can be screwed in and out like a standard screw. This enables precise millimeter-level height adjustments to fit the conditions.&lt;br /&gt;
&lt;br /&gt;
Additionally, the sensors had to be connected to the breadboard. To do this, I soldered cables—each consisting of three wires—of sufficient length to each of the six sensors. I then soldered a connector to each wire to facilitate easy attachment to the breadboard.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;(written by Fiene)&amp;lt;/small&amp;gt;&amp;lt;gallery mode=&amp;quot;packed&amp;quot;&amp;gt;&lt;br /&gt;
File:Prototype mady of cardboard.jpg&lt;br /&gt;
File:Workbench.jpg&lt;br /&gt;
File:Soldering 2.jpg&lt;br /&gt;
File:Sensor with soldered cable.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Plants ==&lt;br /&gt;
*Hyacinth&lt;br /&gt;
*Euphorbia&lt;br /&gt;
*Fern&lt;br /&gt;
*Begonia&lt;br /&gt;
*Peperomia&lt;br /&gt;
*Alocasia&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Exhibition&#039;&#039;&#039;==&lt;br /&gt;
[[File:Preparations and setup 4.jpg|left|thumb|375x375px]]&lt;br /&gt;
&lt;br /&gt;
===Concept===&lt;br /&gt;
The idea was to place the guitar on a table, with a clothing rack positioned behind it, from which the six plants would hang. These included a hyacinth and an alocasia in bags, a fern and a pepper plant in small greenhouses, as well as a begonia and a moldy euphorbia in screw-top jars.&lt;br /&gt;
&lt;br /&gt;
The cables and the breadboard were intentionally installed with minimal cable management, keeping them clearly visible to emphasize the DIY aesthetic.&lt;br /&gt;
&lt;br /&gt;
The lighting needed to be bright enough to provide sufficient light for the plants without being too harsh. Hanna brought her grow lights, which perfectly illuminated the exhibition niche where our work was displayed.&lt;br /&gt;
&lt;br /&gt;
We chose the niche as our exhibition space because it allowed us to maintain a necessary distance from other sound-based projects. Additionally, this setup ensured that the work could only be viewed from the front, preventing visitors from accidentally bumping into it and disturbing any components.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Preparations and setup===&lt;br /&gt;
Hanna and I met in Weimar on the Saturday before the exhibition to attach the picks to the motors and test the interaction of all components. This allowed us to check the overall functionality of both the code and the construction. Fortunately, everything worked as intended, with only a few minor tasks remaining.&lt;br /&gt;
[[File:Preparations and setup 3.jpg|thumb|356x356px]]&lt;br /&gt;
Our plan was to hang the plants from a clothing rack. However, since two of the plants were potted in jars, suspending them proved to be a challenge. To solve this, I crafted wooden discs with holes through which we could thread wire, ensuring that the jars could be securely hung. Hanna also made some minor adjustments to our code.&lt;br /&gt;
&lt;br /&gt;
On the Thursday before the exhibition, we finalized our setup. We darkened the window, adjusted the lighting, secured all components to the table to prevent any shifting during the exhibition, connected the sensors and motors, plugged in the power supply, set the timers, and fine-tuned the height of the mounting structure to ensure that each pick could strike its string and produce a pleasant sound.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;(written by Fiene)&amp;lt;/small&amp;gt;&amp;lt;gallery mode=&amp;quot;packed&amp;quot;&amp;gt;&lt;br /&gt;
File:Preparations and setup 1.jpg&lt;br /&gt;
File:Preparations and setup.jpg&lt;br /&gt;
File:Preparations and setup 4.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Winterwerkschau===&lt;br /&gt;
The Winterwerkschau was a great success for our project. Contrary to our initial concerns, the adhesive held up perfectly, keeping the picks securely attached to the motors for both days of the exhibition. As a result, all the strings could be continuously played without any issues.&lt;br /&gt;
&lt;br /&gt;
When Hanna and I took our turn overseeing the exhibition, we were met with an incredible amount of interest and enthusiasm. Visitors were fascinated by our work, showering us with questions and curiosity. It was an incredibly rewarding experience that filled us with pride and reinforced our excitement about what we had created.&lt;br /&gt;
&lt;br /&gt;
All the hard work had truly paid off, and seeing our project resonate with others made the effort even more worthwhile.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;(written by Fiene)&amp;lt;/small&amp;gt;&amp;lt;gallery mode=&amp;quot;packed&amp;quot;&amp;gt;&lt;br /&gt;
File:The Verdant Symphony 1.jpg&lt;br /&gt;
File:The Verdant Symphony 2.jpg&lt;br /&gt;
File:The Verdant Symphony 3.jpg&lt;br /&gt;
File:The Verdant Symphony 4.jpg&lt;br /&gt;
File:The Verdant Symphony 5.jpg&lt;br /&gt;
File:The Verdant Symphony 6.jpg&lt;br /&gt;
File:Hanna and Fiene next to their work.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Hanna_Bremerich&amp;diff=139235</id>
		<title>Hanna Bremerich</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Hanna_Bremerich&amp;diff=139235"/>
		<updated>2024-11-14T13:04:42Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Created page with &amp;quot;Project by Hanna Bremerich&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Project by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:The_Plant_Plant&amp;diff=139234</id>
		<title>GMU:The Plant Plant</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:The_Plant_Plant&amp;diff=139234"/>
		<updated>2024-11-14T13:03:50Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[:Category:Fachmodul|Werk/Fachmodul]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Lecturer:&#039;&#039; [[Christian Doeller]], Klaus Fritze&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Credits:&#039;&#039; 6 [[ECTS]], 4 [[SWS]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Times:&#039;&#039; Thursday 13:30 - 17:00&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Venue:&#039;&#039; DIY Electronics Lab (B15 / K07), DIY BioLab (M5 / 202)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;First meeting:&#039;&#039; October 24, 13:30 @ Marienstraße 5, Room 204&lt;br /&gt;
&lt;br /&gt;
[[File:Collage-plantplant.jpg|frameless|1073x1073px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Description:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
How do plants perceive their environment, how do plants and environments interact? How can we turn these processes into an immersive experience, to what extent can our concepts and technologies do justice to the plant world?&lt;br /&gt;
&lt;br /&gt;
In the agricultural industry, the combination of plant breeding and cybernetics is aimed at optimizing crops. Machine learning and robotics are used to achieve higher yields, disease resistance and climate adaptation.&lt;br /&gt;
&lt;br /&gt;
In the seminar ‘The Plant Plant’, we invite you to put aside any productivity factors and hand over control to the plants. With the help of DIY sensors and microcontrollers, we attempt to measure interactions between plants and their environment and transform the collected real-time data into a dynamic spatial atmosphere. We draw inspiration from cybernetic control systems and provoke various types of feedback between plants, the environment and humans. In the process, we take a critical look at upcoming relationships and effects. Our aim is to collectively develop a speculative sensing space - a human-scale environment whose atmospheric parameters such as light, temperature and air circulation are regulated by our ‘green control center’.&lt;br /&gt;
&lt;br /&gt;
This is a hands-on seminar. It includes three workshops in which we grow plants under different conditions, learn the basics of DIY electronics / sensor technologies and program control systems with Arduino / ESP32 microcontrollers, motor-driven devices and light sources. Furthermore, we discuss corresponding examples of artistic research in the context of media art.&lt;br /&gt;
&lt;br /&gt;
Requirements for participation: Interest in exploring plant environments, enthusiasm for tinkering and experimenting with DIY electronics, commitment to group work and passion for creating speculative spaces of experience. No prior knowledge is necessary, participants need their own computer / laptop. &lt;br /&gt;
&lt;br /&gt;
Please send your registration by Sunday (20 October) via e-mail, subject ‘The Plant Plant’, with a short letter of motivation (3-4 sentences) to christian.doeller@uni-weimar.de.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Participants:&amp;lt;/u&amp;gt;&lt;br /&gt;
*&lt;br /&gt;
* [[Hanna Bremerich]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Schedule:&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;October 24, 13:30, M5 Room 204&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* first meeting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;October 31 - free&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;November 1 - November 2, 10:00 - 16:00&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Two-day workshop @ DIY Electronics Lab (B15, basement) / DIY Biolab (M5, Room 201)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;November 7, 13:30 - 17:00, DIY Electronics Lab&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* discuss workshop results&lt;br /&gt;
* form working groups&lt;br /&gt;
* first brainstorm in groups&lt;br /&gt;
* networking &amp;amp; data exchange&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;u&amp;gt;Topics:&amp;lt;/u&amp;gt;&lt;br /&gt;
*Growth of plants under different conditions&lt;br /&gt;
*Hermetospheres / bottle gardens&lt;br /&gt;
*DIY Electronics: Basic Sensors &lt;br /&gt;
*DIY Electronics: Basic Actuators&lt;br /&gt;
*DIY Electronics: Microcontrollers (Arduino / ESP) and cybernetic control systems&lt;br /&gt;
*The basics of cybernetics, recursion, feedback&lt;br /&gt;
*Immersive &amp;quot;sensing spaces&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Technology:&amp;lt;/u&amp;gt;&lt;br /&gt;
* [https://github.com/diyElectronicsLab/ThePlantPlant The Plant Plant - GitHub Repo]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Artists:&amp;lt;/u&amp;gt;&lt;br /&gt;
*Philippe Parreno&lt;br /&gt;
*Ursula Damm&lt;br /&gt;
*Marco Barotti&lt;br /&gt;
*Cornelia Sollfrank&lt;br /&gt;
*Katja Tillbörger&lt;br /&gt;
*Robertina Šebjanič&lt;br /&gt;
*Agnes Meyer-Brandis&lt;br /&gt;
*Hicham Berrada&lt;br /&gt;
*Ingo Vetter, Annette Weisser&lt;br /&gt;
*Mel Chin&lt;br /&gt;
*...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Literature:&amp;lt;/u&amp;gt;&lt;br /&gt;
*Donella Meadows&#039;&#039;&#039;:&#039;&#039;&#039; &#039;&#039;Thinking in Systems. A Primer&#039;&#039;&lt;br /&gt;
*Ludwig von Bertalaffny: &#039;&#039;General Systems Theory&#039;&#039;&lt;br /&gt;
*Jagadish Chandra Bose Die Pflanzen Schrift und ihre Offenbarungen. https://books.google.de/books/about/Die_Pflanzen_Schrift_und_ihre_Offenbarun.html?id=n5sYAAAAIAAJ&amp;amp;redir_esc=y&lt;br /&gt;
*Gustav Theodor Fechner: Nanna: On the Mental Life of Plants https://www.amazon.de/Nanna-%C3%9Cber-das-Seelenleben-Pflanzen/dp/3843014280&lt;br /&gt;
*Peter Tompkins/Christopher Bird: The Secret Life of Plants https://www.amazon.de/Secret-Life-Plants-Fascinating-Emotional/dp/0060915870&lt;br /&gt;
*Floriane Koechlin: Plants whispers- A journey through new realms of science https://lenos.ch/buecher/plant-whispers/isbn:978-3-85787-939-5&amp;lt;nowiki/&amp;gt;Plants - sensing movement: https://academic.oup.com/plphys/article/187/3/1131/6359831&lt;br /&gt;
*Charles Darwin: &#039;&#039;&#039;The Power of Movements in plants&#039;&#039;&#039; (publ.1880) https://darwin-online.org.uk/EditorialIntroductions/Freeman_ThePowerofMovementinPlants.html&lt;br /&gt;
*Emanuelle Coccia: https://www.deutschlandfunk.de/emanuele-coccia-die-wurzeln-der-welt-pflanzen-atmen-aus-was-100.html&lt;br /&gt;
*Lynn Margulis: &#039;&#039;&#039;Symbiotic Planet:&#039;&#039;&#039; A New Look At Evolution (1999) https://www.amazon.de/Symbiotic-Planet-New-Look-Evolution/dp/0465072720&amp;lt;nowiki/&amp;gt;Movie: Symbiotic Earth: How Lynn Margulis rocked the boat and started a scientific revolution https://mubi.com/de/de/films/symbiotic-earth-how-lynn-margulis-rocked-the-boat-and-started-a-scientific-revolution&lt;br /&gt;
&lt;br /&gt;
*...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Language &amp;amp; skill level:&amp;lt;/u&amp;gt;&lt;br /&gt;
*The module will be held in English, unless all participants are speaking German.&lt;br /&gt;
*No prior knowledge is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Criteria for passing:&amp;lt;/u&amp;gt;&lt;br /&gt;
*be on time, attend the classes, be active&lt;br /&gt;
*develop a prototype for The Plant Plant&lt;br /&gt;
*document your work on the wiki page&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138765</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138765"/>
		<updated>2024-08-26T03:07:20Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138764</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138764"/>
		<updated>2024-08-26T03:06:56Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138763</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138763"/>
		<updated>2024-08-26T03:06:26Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138762</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138762"/>
		<updated>2024-08-26T03:06:02Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138761</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138761"/>
		<updated>2024-08-26T03:05:40Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138760</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138760"/>
		<updated>2024-08-26T03:04:55Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138759</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138759"/>
		<updated>2024-08-26T03:04:04Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
&lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.   &lt;br /&gt;
&lt;br /&gt;
[[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138758</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138758"/>
		<updated>2024-08-26T03:02:51Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Format&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.   [[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138757</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138757"/>
		<updated>2024-08-26T03:01:54Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;quot;Fusion&amp;quot; - Creating Art(ist) with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way.  [[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with that represented the individual flakes&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;br /&gt;
* After 14 days I ended the project &lt;br /&gt;
* The slime mold created multiple versions that were similar to the drawing, however day 11-14 were the closest&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Fusion2.jpg|Day 2&lt;br /&gt;
File:Fusion3.jpg|Day 3&lt;br /&gt;
File:Fusion4.jpg|Day 4&lt;br /&gt;
File:Fusion5.jpg|Day 5&lt;br /&gt;
File:Fusion6.jpg|Day 6&lt;br /&gt;
File:Fusion7.jpg|Day 7&lt;br /&gt;
File:Fusion8.jpg|Day 8&lt;br /&gt;
File:Fusion9.jpg|Day 9&lt;br /&gt;
File:Fusion10.jpg|Day 10&lt;br /&gt;
File:Fusion11.jpg|Day 11&lt;br /&gt;
File:Fusion12.jpg|Day 12&lt;br /&gt;
File:Fusion13.jpg|Day 13&lt;br /&gt;
File:Fusion14.jpg|Day 14&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//Doku by Hanna Bremerich&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138756</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138756"/>
		<updated>2024-08-26T02:54:47Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Recreating art with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With this project I planned on permanently fusing the artwork and the artist together so that they are completely inseparable. Usually the answer to the question of how much of a connection there is between an artist and their work isn&#039;t a trivial one. There is no doubt that because of the intention and the process of creating the artwork there is always &amp;quot;a part&amp;quot; of the artist themselves integrated in the painting but mostly it&#039;s not always a physical connection and that is exactly what I wanted to achieve: An artwork that is the artist themselves at the same time. &lt;br /&gt;
[[File:Sketch Physarum.jpg|thumb|271x271px|Sketch]]&lt;br /&gt;
&lt;br /&gt;
* To start the project I studied the movement of the slime mold during our course &amp;quot;Growing microorganisms for bioart projects&amp;quot; so that I could create a drawing which the slime mold theoretically could create in a similar way. [[File:Fusion1.jpg|thumb|270x270px|Day 1]]&lt;br /&gt;
* I prepared plastic dishes with an agar-agar-medium in the dimensions of a A4-sheet&lt;br /&gt;
* I placed the oat flakes with Physarum on them in the spots of bigger &amp;quot;blobs&amp;quot; and the food on the spots with               that represented the individual flakes&lt;br /&gt;
* I checked on the slime mold every day and kept placing new oat flakes onto the same spots every day so that the slime mold would hopefully not move away from the spots resembled in the drawing and would create something similar&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion14.jpg&amp;diff=138755</id>
		<title>File:Fusion14.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion14.jpg&amp;diff=138755"/>
		<updated>2024-08-26T02:54:30Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;14&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion13.jpg&amp;diff=138754</id>
		<title>File:Fusion13.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion13.jpg&amp;diff=138754"/>
		<updated>2024-08-26T02:54:05Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;13&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion12.jpg&amp;diff=138753</id>
		<title>File:Fusion12.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion12.jpg&amp;diff=138753"/>
		<updated>2024-08-26T02:53:43Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;12&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion11.jpg&amp;diff=138752</id>
		<title>File:Fusion11.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion11.jpg&amp;diff=138752"/>
		<updated>2024-08-26T02:53:15Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;11&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion10.jpg&amp;diff=138751</id>
		<title>File:Fusion10.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion10.jpg&amp;diff=138751"/>
		<updated>2024-08-26T02:52:51Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;10&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion9.jpg&amp;diff=138750</id>
		<title>File:Fusion9.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion9.jpg&amp;diff=138750"/>
		<updated>2024-08-26T02:51:59Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;9&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion8.jpg&amp;diff=138749</id>
		<title>File:Fusion8.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion8.jpg&amp;diff=138749"/>
		<updated>2024-08-26T02:51:32Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;8&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion7.jpg&amp;diff=138748</id>
		<title>File:Fusion7.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion7.jpg&amp;diff=138748"/>
		<updated>2024-08-26T02:51:03Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;7&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion6.jpg&amp;diff=138747</id>
		<title>File:Fusion6.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion6.jpg&amp;diff=138747"/>
		<updated>2024-08-26T02:50:40Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;6&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion5.jpg&amp;diff=138746</id>
		<title>File:Fusion5.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion5.jpg&amp;diff=138746"/>
		<updated>2024-08-26T02:50:16Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;5&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion4.jpg&amp;diff=138745</id>
		<title>File:Fusion4.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion4.jpg&amp;diff=138745"/>
		<updated>2024-08-26T02:49:53Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;4&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion3.jpg&amp;diff=138744</id>
		<title>File:Fusion3.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion3.jpg&amp;diff=138744"/>
		<updated>2024-08-26T02:49:29Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;3&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion2.jpg&amp;diff=138743</id>
		<title>File:Fusion2.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion2.jpg&amp;diff=138743"/>
		<updated>2024-08-26T02:49:04Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;2&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion1.jpg&amp;diff=138742</id>
		<title>File:Fusion1.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Fusion1.jpg&amp;diff=138742"/>
		<updated>2024-08-26T02:43:35Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;1&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Sketch_Physarum.jpg&amp;diff=138741</id>
		<title>File:Sketch Physarum.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Sketch_Physarum.jpg&amp;diff=138741"/>
		<updated>2024-08-26T02:38:38Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sketch for slime mold&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138740</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138740"/>
		<updated>2024-08-26T02:25:04Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Recreating art with slime mold (Project by Hanna Bremerich, Bauhaus Universität Weimar)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138739</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138739"/>
		<updated>2024-08-26T02:16:59Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Improving Tokyo&#039;s rail system (by Atsushi Tero from Hokkaido University, Sapporo, Japan)&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While looking for food to continue growing the slime mold detects the food from afar and expands various brands in it&#039;s direction. When it has reached the food sources it only keeps the branches with the most efficient way of transporting the nutrients. &lt;br /&gt;
&lt;br /&gt;
Japanese scientists from the Hokkaido University in Sapporo used this characteristic to try and find room for improvement in Tokyo&#039;s rail system. &lt;br /&gt;
&lt;br /&gt;
They placed oat flakes in a wet dish resembling the locations of different major cities in the Tokyo area. Since the slime mold prefers dark places, it was possible for Tero to use bright light as mountains and lakes so that the slime mold would avoid these spots while growing towards the oat flakes. &lt;br /&gt;
&lt;br /&gt;
In the end the slime mold created a network which was very similar to the actual rail system. &lt;br /&gt;
&lt;br /&gt;
Source: https://www.nationalgeographic.com/science/article/slime-mould-attacks-simulates-tokyo-rail-network&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138738</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138738"/>
		<updated>2024-08-26T01:57:00Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* Since the slime mold grows quickly it may need food every day at some point&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Day 4.jpg|Day 4&lt;br /&gt;
File:Day 6.jpg|Day 6&lt;br /&gt;
File:Day 7.jpg|Day 7&lt;br /&gt;
File:Day 8.jpg|Day 8&lt;br /&gt;
File:Day 9..jpg|Day 9&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;u&amp;gt;&amp;lt;big&amp;gt;Projects with Physarum Policephalum&amp;lt;/big&amp;gt;&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_9..jpg&amp;diff=138737</id>
		<title>File:Day 9..jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_9..jpg&amp;diff=138737"/>
		<updated>2024-08-26T01:52:09Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. day 9&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_8.jpg&amp;diff=138736</id>
		<title>File:Day 8.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_8.jpg&amp;diff=138736"/>
		<updated>2024-08-26T01:51:16Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. day 8&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_7.jpg&amp;diff=138735</id>
		<title>File:Day 7.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_7.jpg&amp;diff=138735"/>
		<updated>2024-08-26T01:50:51Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. day 7&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_6.jpg&amp;diff=138734</id>
		<title>File:Day 6.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_6.jpg&amp;diff=138734"/>
		<updated>2024-08-26T01:50:23Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. day 6&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138733</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138733"/>
		<updated>2024-08-26T01:49:49Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
# &amp;lt;u&amp;gt;Growing a big, strong culture that can be used for repetition of &amp;quot;Step 3&amp;quot;&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium&lt;br /&gt;
&lt;br /&gt;
[[File:Ph. Day 3.jpg|center|thumb|283x283px|Day 3]]&lt;br /&gt;
&lt;br /&gt;
* After the culture has reached this stage, just throw the oat flakes on top of it&lt;br /&gt;
* It is possible to keep making new cultures from this one by repeating the previous steps&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_4.jpg&amp;diff=138732</id>
		<title>File:Day 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Day_4.jpg&amp;diff=138732"/>
		<updated>2024-08-26T01:49:25Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. day 4&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Ph._Day_3.jpg&amp;diff=138731</id>
		<title>File:Ph. Day 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Ph._Day_3.jpg&amp;diff=138731"/>
		<updated>2024-08-26T01:41:26Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Phy. day 3&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138730</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138730"/>
		<updated>2024-08-26T01:39:58Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 4: Taking care of Physarum&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To keep the slime mold from escaping it has to be fed regularly. How often and in what way it has to be fed depends on the purpose of the culture. It is possible to do this under the flow hood in an attempt to keep things sterile, however it is also possible to do it on the usual work space (disinfect first and still keep hands and tweezers clean)&lt;br /&gt;
&lt;br /&gt;
# &amp;lt;u&amp;gt;Growing a big, strong culture that can be used for repetition of &amp;quot;Step 3&amp;quot;&amp;lt;/u&amp;gt;In the beginning feed Physarum every two days by using the tweezers to drop a couple of oat flakes into the petri dish until the dish is completely covered with Plasmodium.&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138729</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138729"/>
		<updated>2024-08-26T01:23:12Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;jjsjdajpda&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138728</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138728"/>
		<updated>2024-08-26T01:22:06Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum1.jpg|Physarum day 1&lt;br /&gt;
File:Physarum preserved.jpg|Physarum preserved&lt;br /&gt;
File:Physarum preserved2.jpg|Physarum preserved day 1&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138727</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138727"/>
		<updated>2024-08-26T01:20:49Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &lt;br /&gt;
#* From the existing culture take an oat flake (or multiple) with slime mold on it with the tweezers and place them in the middle of the new petri dish &lt;br /&gt;
#* Place oat flakes as food in the petri dish around the flake with the mold &lt;br /&gt;
#* To prevent future contamination the petri dish can be sealed with Parafilm&lt;br /&gt;
# Preserved Physarum comes dried on a filter paper inside a sealed bag &lt;br /&gt;
#* Place the paper in the middle of the petri dish and put drops of water on the paper to reactivate the slime mold &lt;br /&gt;
#* Place oat flakes around the paper &lt;br /&gt;
#* Optionally the petri dish can be sealed with Parafilm&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_preserved2.jpg&amp;diff=138726</id>
		<title>File:Physarum preserved2.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_preserved2.jpg&amp;diff=138726"/>
		<updated>2024-08-26T01:19:35Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ph. preserved&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_preserved.jpg&amp;diff=138725</id>
		<title>File:Physarum preserved.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_preserved.jpg&amp;diff=138725"/>
		<updated>2024-08-26T01:18:39Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Physarum preserved&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum1.jpg&amp;diff=138724</id>
		<title>File:Physarum1.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum1.jpg&amp;diff=138724"/>
		<updated>2024-08-26T01:10:12Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Physarum1&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138723</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138723"/>
		<updated>2024-08-26T00:47:17Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* Fill the needed amount of water either into a pot or the Erlenmeyer flask&lt;br /&gt;
* Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
* Stir the agar into the water&lt;br /&gt;
* Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over&lt;br /&gt;
* Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
Newly bought oat flakes can be put into a sealed container (e.g. a glass bottle or a mason jar), but if you want to try to prevent future contamination as much as possible, the oat flakes can be &amp;lt;u&amp;gt;sterilized&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
* Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole (the hole in the lid is very important, otherwise the jar might burst inside the pressure cooker)&lt;br /&gt;
* Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid to prevent contamination later on (cover the lid completely)&lt;br /&gt;
* Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside&lt;br /&gt;
* Close and lock the lid and wait until the needed temperature and pressure point are reached (121°C, 15 PSI)&lt;br /&gt;
* Reduce the at minimum heat at which it is possible for the water to keep boiling&lt;br /&gt;
* From that point on, wait about 50 minutes and ensure that the pressure of 15 PSI is kept throughout this time&lt;br /&gt;
* After that wait for the cooker to cool down on it&#039;s own and only then release the pressure to prevent it from boiling over &lt;br /&gt;
* Take out the jars, let them cool down and only open them under a flow hood with gloves and disinfected hands&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* (put on the flow hood and disinfect the surface you are working on with alcohol, however the &#039;&#039;&#039;flow hood is&#039;&#039;&#039; &#039;&#039;&#039;not&#039;&#039;&#039; &#039;&#039;&#039;absolutely necessary&#039;&#039;&#039; )&lt;br /&gt;
* put on gloves&lt;br /&gt;
* spray a paper towel with alcohol and clean the tweezers, then hold them over the flame of the burner (doesn&#039;t have to be long) (and put them into the flow hood)&lt;br /&gt;
* disinfect your hands with alcohol before working with the slime mold&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;There are two ways for starting a new culture of Physarum:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
# Using a part of an already existing culture: &amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dish with culture of Physarum, gloves, tweezers, bunsen burner, paper towels, 70%-alcohol, petri dish with agar-medium, oat flakes &lt;br /&gt;
&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
- If there is already a culture available, take an oat flake with slime mold on top of it and place it in the prepared petri dish (or multiple oat flakes)&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138722</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138722"/>
		<updated>2024-08-26T00:15:36Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale, spoon, aluminium foil &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
-  Fill the needed amount of water either into a pot or the Erlenmeyer flask &lt;br /&gt;
&lt;br /&gt;
-  Weigh the needed amount of powdered agar (e.g. by using some aluminium foil as a dish)&lt;br /&gt;
&lt;br /&gt;
-  Stir the agar into the water &lt;br /&gt;
&lt;br /&gt;
-  Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over &lt;br /&gt;
&lt;br /&gt;
-  Pour the mixture into the petri dishes until they are max. halfway full, close the lids and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 2: Preparing food for the slime mold&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Since Physarum is capable of ingesting material by phagocytosis, it needs &amp;quot;food&amp;quot; to grow, if it&#039;s starved, it will escape. &lt;br /&gt;
&lt;br /&gt;
A supply of oat flakes can be used as a source of food. &lt;br /&gt;
&lt;br /&gt;
While it is not absolutely necessary, the oat flakes can be sterilized to try to avoid possible contamination by using a pressure cooker: &lt;br /&gt;
&lt;br /&gt;
Materials: Glass jars with lids, cotton wadding, aluminium foil, water, pressure cooker &lt;br /&gt;
&lt;br /&gt;
-   Prepare a jar with a lid by putting a hole into the lid and insert some cotton wadding tightly into the hole&lt;br /&gt;
&lt;br /&gt;
-   Fill some oat flakes into the jars, close the lid and put aluminium foil over the lid (cover the lid completely) &lt;br /&gt;
&lt;br /&gt;
-   Pour enough water into the pressure cooker, but not so much that the glasses are floating (follow manual for guidance), place the glasses inside &lt;br /&gt;
&lt;br /&gt;
-   Close and lock the lid&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are two ways for starting a new culture of Physarum: &lt;br /&gt;
&lt;br /&gt;
1) Using a part of an already existing culture: &lt;br /&gt;
&lt;br /&gt;
- If there is already a culture available, take an oat flake with slime mold on top of it and place it in the prepared petri dish (or multiple oat flakes)&lt;br /&gt;
&lt;br /&gt;
- Place new oat flakes&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138721</id>
		<title>Physarum Policephalum (slime mold)</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=Physarum_Policephalum_(slime_mold)&amp;diff=138721"/>
		<updated>2024-08-25T23:47:07Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: Steps&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Species&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Physarum Policephalum is an eucaryotic organism which belongs to the class of Myxogastria. It passes a life cycle of morphologic phases, with the phase in which the multinucleate cells form a plasmodium (thin film, with visible branches) often being used for study purposes. This slime mold can be found in cool, humid, darker places, for example on rotten wood in the forest.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Physarum on wood.jpg|Physarum on wood&lt;br /&gt;
File:Physarum-Life-Cycle.jpg|diagram of life cycle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;Images taken from: https://www.ctvnews.ca/sci-tech/strange-yellow-slime-mold-can-remember-where-it-left-food-study-says-1.5326525&lt;br /&gt;
&lt;br /&gt;
https://knowledge.carolina.com/discipline/life-science/biology/the-slime-mold-physarum-polycephalum/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;Growing of Physarum&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
To be able to use the plasmodium for projects or study purposes, bigger cultures of Physarum have to be grown. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 1: Preparing petri dishes:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Materials:&amp;lt;/u&amp;gt; Petri dishes, Erlenmeyer flask/pot, distilled water/tap water, powdered agar, scale &lt;br /&gt;
&lt;br /&gt;
The easiest gel to make is agar-agar-medium at a ratio of 1 to 100: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Component&lt;br /&gt;
!Quantity&lt;br /&gt;
!Custom Quantity&lt;br /&gt;
|-&lt;br /&gt;
|water &lt;br /&gt;
|100 ml &lt;br /&gt;
|x&lt;br /&gt;
|-&lt;br /&gt;
|agar agar&lt;br /&gt;
|1 g&lt;br /&gt;
|x&lt;br /&gt;
|}&lt;br /&gt;
-  Fill the needed amount of water either into a pot or the Erlenmeyer flask &lt;br /&gt;
&lt;br /&gt;
-  Weigh the needed amount of powdered agar (e.g. by using some tinfoil as a dish)&lt;br /&gt;
&lt;br /&gt;
-  Stir the agar into the water &lt;br /&gt;
&lt;br /&gt;
-  Stir and heat the mixture until it&#039;s boiling (by using the stovetop or microwave) and take it off the heat before it boils over &lt;br /&gt;
&lt;br /&gt;
-  Pour the mixture into the petri dishes until they are max. halfway full and let them cool down until the medium has solidified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Step 3: Starting a new culture&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are two ways for starting a new culture of Physarum: &lt;br /&gt;
&lt;br /&gt;
1) Using a part of an already existing culture: &lt;br /&gt;
&lt;br /&gt;
- If there is already a culture available, take an oat flake with slime mold on top of it and place it in the prepared petri dish (or multiple oat flakes)&lt;br /&gt;
&lt;br /&gt;
- Place new oat flakes&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum-Life-Cycle.jpg&amp;diff=138720</id>
		<title>File:Physarum-Life-Cycle.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum-Life-Cycle.jpg&amp;diff=138720"/>
		<updated>2024-08-25T23:04:52Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Life cycle of physarum&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_on_wood.jpg&amp;diff=138719</id>
		<title>File:Physarum on wood.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Physarum_on_wood.jpg&amp;diff=138719"/>
		<updated>2024-08-25T23:03:23Z</updated>

		<summary type="html">&lt;p&gt;Hanna Bremerich: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;slime mold growing on wood&lt;/div&gt;</summary>
		<author><name>Hanna Bremerich</name></author>
	</entry>
</feed>