isaac pierre racine

Home
Final project
21 -Final project research

Deciding on my final project has been a long journey. Before deciding on the digiTalog sculpture I explored many different avenues. In this final entry I am sharing these ideas, part of my research and some relfections I had in the propcess. The information that I provide here are not structured as an assignment. There are mostly notes I took for my-self.

The container/vs/ the contained

My original idea was to make the window display of my storefront studio interactiv. For some reason the very fact of integrating a sensor system into the displays did not seem enough. I could not escape the question: what will be exhibited in these window?

One answer that I came up with at some point was to simply display an interactiv instalation composed of the elements I have create for fab academy assignments. To include self-powered elements, energy consumption visualization and vibration sensor system as an interface to communicate the inside with the outside of the window. A collage of artifacts interacting with eachother and with human presence.
This idea is great and could have been a beautiful projects but it was too ambitiopus and also to abstract for my skill level. I did not feel confident enough to engage in it. When I gave up on the idea I had already gatherered a buch of references which I started investigating. Milli-Motein: A Self-Folding Chain of Programmable Matter with a One Centimeter Module Pitch
Perpetual movement.
Working free energy generator_autonomous artifact
Introduction to Magnetism and Induced Currents
passive acoustic tap tracking acroos large surface
generating current using magnet
arduino knock/piezo
fundamentals on piezo

Analog/vs/digital

The gap between the analog and the digital in analogy to the old/vs/the new. Observing a leitmotiv of fascination for the machines throughout history. The idea of balance, attraction and repulsion.

This idea of a self-powered artifacts has been in my mimd for a long time. As the weeks passed the elements lined-up. A determining moment was at eastern when, on holidays, I stumbled on the book Machine art edited by the Moma while I was at the Oppenhof art residency in Switzerland. That book reconnected me with the art of early 20th century, more specificaly Marcel Duchamps and the Dada. That woke up an old fascination.

I engaged in a new direction with the idea of using existing hardware and elements and assemble them in a pseudo technological mock-up of Marcel Duchamps "bycicle wheel on a stool".

My first try out was with an old sewing machine 220v motor. It was very loud and pure contradiction. A huge amount of power consumed to turn a led on. I liked the contradiction but did not find it had enough potential for a final project. I got rid of the motor and attached the wheel to a stool. When the wheel spins the led flashes along with the alternate current rythm. I concluded my particular "hommage" to Duchamps there.

Exploring possible avenues

I have been working with magnets installation that challenges gravity forces so I thaught integrating electromagnets and piezo sensor could be a direction. I had no concrete idea other than test and play around with those materials and see if I would hit some kind of magic. I did many experiments which I enjoyed doing but none of them opened a perspective that I felt promising enough for a final project.

I spent lots of time experimenting with Arduino to get reading from 2 piezo on a window pane of the storefront and also developped the base of a code that would provide a differential equation of the different sensors. Before going further in the process I read the MIT thesis Window tap on a large window pane paper-pdf .

The project fascinated me. It connected with my original idea abou the interactiv function that directly involve the user. But I felt overwhelmed by the idea of solving such a complex problem in just a few weeks. Nwvertheless with the help of my friend Vasyl Vasko who is a rumanian physician we sketched a first scheme in which we define an approach.

At this point I did not know what my final project was going to be but I knew it has to include the tension between the digital and the analog and that it will be a representation of my very experience of technology: a contradiction between empowerment and slavery.

On week 12 - I sat with my instructotors for a brainstorm. Out of this session came the idea to make the diTalog artifact. From that moment I went full on into making it and after 4 weeks I was ready to present it.

I have gathered a series of additional references of projects that contributed also to my inspiration. piezo transcuders
reversing polarity of a magnet
magnetic field of a hand
Flat coil
Hall effect arduino sketch
speed of sound in common solid
zimoun
Self organizing still life.

The end of a cycle

Even though last year I did not get to make an instalation for my window display I managed to get interaction into it for one special day. Together with FablabBarcelona FabAcademy2017 fellow student we organized to expose our final project at my store. It was a beautiful experience. I am proposing the student of this year to repeat it this year.

EXTRAS EXERCISES

ffmpeg compression tool

I have learned to export video with terminal command lines using ffmpeg. It is useful to reduce the video size, choose and set codec, bitrate, etc. Here is the line of code I prompted: ffmpeg -i presentation4.mpeg -c:v libx264 -crf 24 -preset slow -c:a aac -b:a 192k -ac 2 out.mp4.
-1 = name of the video with the extension -c: =H264 library -crf =24 frame per second -preset slow = use low quality preset from library -c:a = acc -b:a 192k ac 2 = output video name + extension

experimenting with Git

I did sessions with my freind Henrik Jonsson about git. Basically I ran through creating a new ssh key on my computer, create a local repository and syncronize it to a remote github repository. I went one step further in understanding better the logic and practiced with more complex cammand lines. I learned about the difference between staging files, introduced but did not go to far into git checkout --.
I also learned to call the nano application to edit a file directly from the terminal.

I have collected the terminal shell of the process which includes creating a script to call the public key in the terminal special agent:
//*organizing method analog to go program
desktop/adsrc/github.com/isaacbcn/ repos..... //*where infos and datas are stored.
desktop/adsrc/bin //*where infos and datas are stored.
pwd //*where am I?
whoami //*who am I?
cd //*back to home directory.
./add_key.sh //*script to add ssh keys on reboot dot stands for current directory:
ssh-add //*a ssh key to my agent
ssh-add -l //*list all existing keys in my agent

git clone //* fresh copy of a repo.
git checkout //* edit a staged file

mkdir //* create a directory
git init //* initialize a git within a directory

Access original files here.

Back to top