summaryrefslogtreecommitdiff
path: root/2d/softbody/softbody_1.html.content
blob: 4f66ce3596086df52a13c93c909fb5ce3d24f497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<script src="./softbody_1/dist/output.js"></script>
<script>
  window.onload = function() {
      // -- Play/Stop Logic
      function addButtonListener(pPlay, pStop, pDisableElementList) {
          var lPlayElement = document.getElementById(pPlay),
              lStopElement = document.getElementById(pStop);
          lPlayElement.addEventListener('click', function() {
              lPlayElement.style.display = 'none';
              lStopElement.style.display = 'block';

              pDisableElementList.forEach(function(element) {
                  element.disabled = true;
              });
          });
          lStopElement.addEventListener('click', function() {
              lStopElement.style.display = 'none';
              lPlayElement.style.display = 'block';

              pDisableElementList.forEach(function(element) {
                  element.disabled = false;
              });
          });
      }

      addButtonListener('gl_canvas_play_undamped', 'gl_canvas_stop_undamped', [
          document.getElementById('undamped_spring_length'),
          document.getElementById('undamped_start_position')
      ]);
      addButtonListener('gl_canvas_play_damped', 'gl_canvas_stop_damped', [

      ]);

      // -- Slider logic
      var sliderList = document.querySelectorAll('input[type=range]'),
          attachListener = function(element) {
              var output = element.nextElementSibling;
              var updateOutput = function() {
                  var value = Number(element.value);
                  output.innerHTML = value;
              }
              
              element.addEventListener('input', updateOutput);
              element.addEventListener('change', updateOutput);
              updateOutput();
          };

      for(var i = 0; i < sliderList.length; i++) {
          attachListener(sliderList[i]);
      }

      // -- Add callbacks for sliders
      Module.onRuntimeInitialized = function() {
          var Undamped_SetLength = Module.cwrap('Undamped_SetLength', 'void', ['number']),
              Undamped_SetDisplacement = Module.cwrap('Undamped_SetDisplacement', 'void', ['number']),
              Undamped_SetK = Module.cwrap('Undamped_SetK', 'void', ['number']),
              Undamped_SetMass = Module.cwrap('Undamped_SetMass', 'void', ['number']),
              lengthSlider = document.getElementById('undamped_spring_length'),
              displacementSlider = document.getElementById('undamped_start_position'),
              kSlider = document.getElementById('undamped_spring_constant'),
              massSlider = document.getElementById('undamped_spring_mass'),
              setLength = function(value) {
                  value = Number(value);
                  Undamped_SetLength(value);

                  var currentDisplacementValue = displacementSlider.value;
                  var bound = value / 2.0;
                  displacementSlider.setAttribute('max', bound);
                  displacementSlider.setAttribute('min', -bound);

                  if (currentDisplacementValue < -bound) currentDisplacementValue = -bound;
                  else if (currentDisplacementValue > bound) currentDisplacementValue = bound;

                  var event = new Event('change');  
                  displacementSlider.value = currentDisplacementValue;
                  displacementSlider.dispatchEvent(event);
              },
              setDisplacement = function(value) {
                  Undamped_SetDisplacement(value);
              },
              setK = function(value) {
                  Undamped_SetK(value);
              },
              setMass = function(mass) {
                  Undamped_SetMass(mass);
              };

          lengthSlider.addEventListener('change', function(event) { setLength(Number(event.target.value)); });
          displacementSlider.addEventListener('change', function(event) { setDisplacement(Number(event.target.value)); });
          kSlider.addEventListener('change', function(event) { setK(Number(event.target.value)); });
          massSlider.addEventListener('change', function(event) { setMass(Number(event.target.value)); });
      };
  }
  
</script>
<article>
  <h1>Springs</h1>
  <section>
	<p>
    It is time to investigate what it means to have a deformation in our physics system. By deformation, I mean that the
    vertices of our shapes are no longer fixed to one point within the model. We will begin with what I believe
    by investigating the most common of all deformations: a weight attached to a spring in two dimensions.
	</p>
  </section>
  <section>
	<h2></h2>
  </section>
  <section>
	<h2>
	  Undamped Springs
	</h2>
    <p>
      <span class='widget_container'>
        <label for='undamped_spring_length'>Spring Length (m)</label>
        <input type='range' id='undamped_spring_length' min="50" max="300" value="150"/>
        <span></span>
      </span>
      
      <span class='widget_container'>
        <label for='undamped_start_position'>Start Displacement (m)</label>
        <input type='range' id='undamped_start_position' min='-75' max='75' value='0'/>
        <span></span>
      </span>

      <span class='widget_container'>
        <label for='undamped_spring_constant'>Spring Constant (N / m)</label>
        <input type='range' id='undamped_spring_constant' min='0.1' max='5.0' value='1.0' step='0.1'/>
        <span></span>
      </span>

      <span class='widget_container'>
        <label for='undamped_spring_mass'>Mass (kg)</label>
        <input type='range' id='undamped_spring_mass' min='0.1' max='10.0' value='1.0' step='0.1'/>
        <span></span>
      </span>
      
    </p>
    <div class="opengl_canvas_container">
      <canvas id="gl_canvas_undamped" width="800" height="600"></canvas>
      <button id="gl_canvas_play_undamped" class="play_button">
        Play
      </button>
      <button id="gl_canvas_stop_undamped" class="stop_button">
        Stop
      </button>
    </div>
  </section>

  <section>
	<h2>
	  Damped Springs
	</h2>
    <p>
      
    </p>
    <div class="opengl_canvas_container">
      <canvas id="gl_canvas_damped" width="800" height="600"></canvas>
      <button id="gl_canvas_play_damped" class="play_button">
        Play
      </button>
      <button id="gl_canvas_stop_damped" class="stop_button">
        Stop
      </button>
    </div>
  </section>

  <footer id='references'>
    <h2>References</h2>
    <ul>
      <li>
        <a href='https://www.youtube.com/watch?v=Z52emur7Rko'>Wonderful Undamped Resource</a>
      </li>
      <li>
        <a href='https://www.youtube.com/watch?v=CTd1uVq5-l8'>Wonderful Damped Resource</a>
      </li>
      <li>
        <a href='http://ambrsoft.com/CalcPhysics/Spring/SpringData.htm'>List of Equations for Spring Motion</a>
      </li>
      <li>
        <a href='https://www.ryanjuckett.com/damped-springs/'>Ryan Juckett's Explanation of Damped Springs</a>
      </li>
    </ul>
  </footer>
</article>