Connecting The Dots

아빠의 우주연구

User Tools

Site Tools


ctd:keylontic

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
ctd:keylontic [2017/06/02 22:03]
admin [3. Keylons]
ctd:keylontic [2017/08/14 11:04]
admin [Oscillation:]
Line 56: Line 56:
 '​파르티키'​(Partiki)가 두개의 '​하부 음조'​(Sub-tone)로 분열(Fission)하여 '​파르티쿰'​(Particum) 물질우주와 '​파르티카'​(Partika) 반물질 평행우주로 **'​현현'​** (Mainfestation) 한후 다시 '​파르티키'​(Partiki)로 재융합(Fusion)하여 에너지가 점멸하는 과정을 **'​파르티키 위상순환'​**(Partiki Phasing) 혹은 **'​오실레이션'​**(Oscillation:​진동) 이라고 부른다. 반물질 평행우주를 구성하는 파르티카(Partika)는 우리 물질우주를 구성하는 파르티쿰(Particum) 보다 두배의 속도로 진동(Oscillation) 하는 관계로 의식(Consciousness)또한 상대적으로 많다. '​파르티키'​(Partiki)가 두개의 '​하부 음조'​(Sub-tone)로 분열(Fission)하여 '​파르티쿰'​(Particum) 물질우주와 '​파르티카'​(Partika) 반물질 평행우주로 **'​현현'​** (Mainfestation) 한후 다시 '​파르티키'​(Partiki)로 재융합(Fusion)하여 에너지가 점멸하는 과정을 **'​파르티키 위상순환'​**(Partiki Phasing) 혹은 **'​오실레이션'​**(Oscillation:​진동) 이라고 부른다. 반물질 평행우주를 구성하는 파르티카(Partika)는 우리 물질우주를 구성하는 파르티쿰(Particum) 보다 두배의 속도로 진동(Oscillation) 하는 관계로 의식(Consciousness)또한 상대적으로 많다.
  
-<​HTML>​ 
-<script src="​http://​cloud.github.com/​downloads/​uxebu/​bonsai/​bonsai-0.4.1.min.js"></​script>​ 
-<div id="​divPhasing"></​div>​ 
-<script type="​phasing"​ id="​phasing">​ 
-  RADIUS = 30; 
-  PX = 65; 
-  PY = 50; 
-  DrawPartiki(PX,​PY,​RADIUS,'​2s'​);​ 
- 
-  function DrawPartiki(x,​y,​r,​sec) ​ 
-  { 
-    e = '​cubicOut';​ 
-    var animePki = new KeyframeAnimation(sec,​ { 
-      '​0%' ​ : { radius: r }, 
-      '​50%'​ : { radius: 0 }, 
-      '​100%':​ { radius: r } 
-    }, { repeat:​Infinity,​ easing:e });  ​ 
-    var animePcm = new KeyframeAnimation(sec,​ { 
-      '​0%' ​ : { radius: 0 }, 
-      '​50%'​ : { radius: r }, 
-      '​100%':​ { radius: 0 } 
-    }, { repeat:​Infinity,​ easing:e });  ​ 
-    var animePka = new KeyframeAnimation(sec,​ { 
-      '​0%' ​ : { radius: 0 }, 
-      '​25%'​ : { radius: r }, 
-      '​50%'​ : { radius: 0 }, 
-      '​75%'​ : { radius: r }, 
-      '​100%':​ { radius: 0 } 
-    }, { repeat:​Infinity,​ easing:e });  ​ 
- 
-    d = Math.sqrt(r*r / 2); 
-    new Circle(x-d,​y+d,​r).stroke("​silver",​ 1).attr({strokeDash:​ [10,​5]}).addTo(stage);​ 
-    new Circle(x+d,​y+d,​r).stroke("​silver",​ 1).attr({strokeDash:​ [2,​2]}).addTo(stage);​ 
-  ​ 
-    fill = new color.RGBAColor(100,​100,​100,​0);​ 
-    new Circle(x ​ ,y  ,​0).stroke("​silver",​ 1).addTo(stage).fill(fill).animate(animePki).attr({strokeDash:​ [2,2]}); 
-    fill = new color.RGBAColor(200,​100,​90,​160);​ 
-    new Circle(x-d,​y+d,​0).stroke("​purple",​ 1).addTo(stage).fill(fill).animate(animePcm);​ 
-    fill = new color.RGBAColor( ​ 0,​100,​200,​160);​ 
-    new Circle(x+d,​y+d,​0).stroke("​navy",​ 1).addTo(stage).fill(fill).animate(animePka);​ 
-  ​ 
-    animePcm = new KeyframeAnimation(sec,​ { 
-      '​0%' ​ : { x:x  , y:y   }, 
-      '​50%'​ : { x:x-d, y:y+d }, 
-      '​100%':​ { x:x  , y:y   } 
-    }, { repeat:​Infinity,​ easing:e });  ​ 
- 
-    animePka = new KeyframeAnimation(sec,​ { 
-      '​0%' ​ : { x:x  , y:y   }, 
-      '​25%'​ : { x:x+d, y:y+d }, 
-      '​50%'​ : { x:x  , y:y   }, 
-      '​75%'​ : { x:x+d, y:y+d }, 
-      '​100%':​ { x:x  , y:y   } 
-    }, { repeat:​Infinity,​ easing:e });  ​ 
- 
-    new Circle(x ​ ,y  ,​2).stroke("​dodgerblue",​ 1).addTo(stage).fill("​aqua"​).animate(animePcm);​ 
-    new Circle(x ​ ,y  ,​2).stroke("​dodgerblue",​ 1).addTo(stage).fill("​aqua"​).animate(animePka);  ​ 
- 
-    TextOut(x,​y-40,'​Partiki'​);​ 
-    TextOut(x-d-6,​y+d+32,'​Particum'​);​ 
-    TextOut(x+d+6,​y+d+32,'​Partika'​);​ 
-    //new Rect(0, 0, 140-1, 130-1).stroke("​red",​ 1).addTo(stage);​ 
-  } 
- 
-  function TextOut(x,​y,​data) ​ 
-  { 
-    new Text(data).attr({ ​ 
-    x: x-18,  
-    y: y, 
-    textAlign: '​center',​ 
-    fontSize: '​11px',​ 
-    fontFamily: '​Arial',​ 
-    textFillColor:​ '​gray'​ 
-    }).addTo(stage);​ 
-  } 
-</​script>​ 
- 
-<​script>​ 
-  var divPhasing = document.getElementById('​divPhasing'​);​ 
-  bonsai.run(divPhasing,​ { 
-    code: document.getElementById('​phasing'​).innerHTML,​ 
-    width: 140, 
-    height: 130, 
-    framerate: 30 
-  }); 
-</​script></​HTML>​ 
- Partiki Phasing (Oscillation) 
  
 ==== Frequency: ==== ==== Frequency: ====
ctd/keylontic.txt · Last modified: 2023/05/11 13:42 by admin