Piezoelectric sensor

  • A piezoelectric sensor is a device that uses the piezoelectric effect to measure pressure, acceleration, strain or force by converting them to an electrical signal. 
  • Based on piezoelectric technology varous physical quantities can be measured; 
    • The most common are pressure and acceleration. When the accelerometer experiences a motion, the invariant seismic mass loads the elements according to Newton’s second law of motion F = ma.
    • Vibration sensors can also be used to harvest otherwise wasted energy from mechanical vibrations. 

Presedence 3



Music Visualization Project

Precedence 2


宮商角徵羽

electronic orgol

Precedence 1



synesthesia territimely

Fantastic film! Synesthesia means that one stimulus stimulates other two or more senses. Not only does the film maker approach to daily objects from various perspectives, but also s/he re-presents one source as other sources metaphorically. The last half part which sound comes from speakers as the forms of objects reminds me considering to convey between invisible to visible senses or vice versa.

Paper prototyping


 From the paper prototyping, I'm considering to use more sensors and space efficiently. More than two sensors are needed both as a trigger and measuring 'variables' - reaction from audiences. Also, how to use a sphere or orb more flexible is considered. For example, setting mirrors or projecting could be possible rather than fill out the inside wall of the sphere with LEDs.

a motion sensor



Jon Sasaki, ‘Flyguy triggering his own motion sensor’ (2010)

A flyguy (one of the familiar dancing inflatables that wave people into carwashes and fast food restaurants) has been moved into the gallery and hooked up to a motion sensor.

http://pietmondriaan.com/tag/mechanical-sculpture/

2D Equations


The symbol is composed with following 4 equations.

* Wave - Ying and Yang
y1(x)= +sqrt(2^2-(x-2)^2)
y2(x)= -sqrt(2^2-(x+2)^2)


* Circle 
   x^2 + y^2 = r^2
   r = 4
y3(x)= +sqrt(4^2-x^2)
y4(x)= -sqrt(4^2-x^2)



http://www.mathsisfun.com/data/function-grapher.php 

Users' profiles


1. Corry is a 22 years old student. She's going an art school. She is half french and half American. She is very social so she has a lot of friends from many countries. She likes chocolate and wine. Although her major is fashion, she is interested more in Fine art. She is sensitive but not that keen. She usually goes to a museum and holds a party. She dislikes crammed.

2. Eric is an engineer. He is 27 years old male. He likes movies and skates. Whereas he works at engineering company, he doesn't satisfied  with his major. He is bored and considering change his job.


3. Cheon is a 38 years old woman from Korea. She studied graphic design in Paris. She's been teaching web-design in university for several years. She haven't gotten married. She is chill. She is strict to her work. She likes shopping but not crazy about it. She often spends time herself. She is considered as a  competent designer.  

4. Miranda is a 24 years old woman. She is a top model. She likes traveling and listening to music. She is quiet.

Using LEDs



LEDs, which is stand for Light Emitting Diodes, are now very widely used in almost every area of electronics, mainly as indicator and display devices - in effect, 'solid state lamps'. They’re very well suited for this kind of use, because they are physically quite rugged and hence much more reliable than filament-type incandescent lamps.
They also run much cooler and are much more efficient, requiring far less electrical power input for the same amount of light output. Other common uses for LEDs are as a source of either visible or infra-red light, transmitted as a carrier for data and other information over short ‘line of sight’ distances. 
A LED is basically just a specialised type of P-N junction diode, made from a thin chip of fairly heavily doped semiconductor material. When it is forward biased to reduce the potential barrier provided by the junction’s narrow depletion layer, electrons from the semiconductor’s conduction band can combine with holes from the valence band, releasing sufficient energy to produce photons of light. Because the chip is thin a reasonable number of these photons can leave it and radiate away as its light output.

Project Essay

Intro
The Korean national flag is 'Tae-Geuk Gi', and 'Tae-Guek' means the symbol that is located in the middle of the flag. It implies the harmony of 'Eum-and-Yang,' which are representative of the heaven and the earth. Also, the harmony of 'Eum-and-Yang' reflects a creation theory of this universe in oriental theory. Simply, all things that are being in the universe are classified in two as in the beginning there were the heaven and the earth, male and female, and they attract each other under the law of universal gravitation.
To return to the symbol, simply, 'Tea-Geuk' consists of red and blue, and the wave sign is in between the two colors. If the symbol followed dualism or a black and white issue, the wave might be a straight-line instead of a curvy shape. Furthermore,

Abstract

My project is an installation about individual aura which is important  in oriental concept. I drew inspiration from Tae-Geuk which comes from the Korean national flag, and represent the meaning that the creation of this universe in oriental theory. I will create a small universe in the shape of Tae-Geuk using LEDs. When an individual walks into the installation booth, the LEDs will change according to an individual's spiritual energy. The project is about converting individual things into visual effects through interaction.

group discussion - Oct.13

Vanessa's comments:
She suggested that a person's temperature(or body heat) can reflect the person's energy even if the energy is invisible and spiritual because a body heat implies(or depends on) a person's physical energy, the circulation of the blood and emotional status. Therefore, she recommended using fabrics or sensors that sense heats. In addition, she considered about a sculpture aspect; why is it supposed to be a sphere shape rather than a cube.

Louis's comments:
He suggested that I should consider to interactions between a view who is inside of the installation and another viewer who is outside of the installation since my theme is the Tae-Geuk symbol that is considered as the harmony of 'Eum-Yang' or 'heaven-earth'. In other words, by focusing on dualism, he gave me the other option that two participants interact each other through the installation. Also, for the solution of measuring 'Qi', he encouraged me to formulate an mathematical function such as multiplying one's body temperature and ones heart beat's rate. 

Time line


It will be fixed more specifically.

Area of interest; the tree of my interest



Here is my domain of interest. 5 colored areas are parent level, then other circles are in child level. Therefore some of them between two parents are sharing both parents' genes!

Processing

Upper-semicircle formula code in Processing

This code draws the upper-semicircle that is a half part of the wave in Tae-Geuk symbol.
The trace of variables follows the formula: y2= sqrt(r2 – x2)  

 






















float px, py;
float angle;
float radius = 100;
float frequency = 10;
float frequency2 = 2;
float x, x2;


PFont myFont;


void setup(){
  size(400, 200);
  background (127);
  myFont = createFont("verdana", 12);
  textFont(myFont);
  frameRate(10);
 
}








void draw(){
 
 
 
  background (127);
  noStroke();
  fill(255);




  float px = 0;
  while(px < 100) {
    px = px+1;
   }


  float py = 0;
  while(py < 75){
    py = py+1;
   }
 
 




  px = width/8 - cos(radians(angle))*(radius/2);
  py = 75 + sin(radians(angle))*(radius/2);




 
   rectMode(CENTER);
   fill(0);
 
   noStroke();
   ellipse(px, py, 5, 5);
   angle -= frequency;
   
   while(angle < -180){
   angle = 10;
   }
   
   


  text("y = sin x", 35, 185);
  text("px = " + px, 105, 185);
  text("py = " + py, 215, 185);


 loop();


}





sketch 1

Rough sketch of my project.