Skip to main content

Do Over: Ruled Surfaces

Why to choose this project to repeat

For the do over project, I would like to choose the ruled surfaces. I don't think my last project was creative, and the 3D printed effect was not very satisfactory. In the previous attempts, all the lines are connected between a straight line and a circle. This connection structure is relatively uncomplicated. The printed model has too many lines, resulting in too dense line arrangement. The gaps between lines are too small, and the final effect is that all the lines are connected into a curved surface, which is far from the effect I expected.

What to be improved

In this do over project, I would like to improve in two aspects.
Firstly, a different ruled surface is chosen. In the previous model, one curve is a unit circle on the \(x-y\) plane, and the ruled surface is a right circular conoid. In this do over project, it is replaced by two border lines. Each borderline is in the shape of an isosceles right triangle. Then the basic shape of the ruled surface is hyperbolic paraboloid. This kind of shapes is also used as roofs in architecture, as shown in the following picture.
Secondly, the step to move the straight line is adjusted larger, so that the gaps between lines are clear enough to show the formation of the ruled surface.

How to implement improvements

The chosen ruled surface is defined by a central line and two border lines. The central line is a line segment connecting two points, \((-10, 0 ,10)\) and \((10, 0, 10)\). The two border lines are symmetric respect to the \(x-\) axis and \(y-\) axis. The first border line is defined by the following equations: \[\left\{\begin{split} \begin{aligned} x&=t, -10 \le t \le 10\\ y&=-10 \\ z&=10(1+t/10), -10 \le t \le 0 \\ z&=10(1-t/10), 0 \le t \le 10 \\ \end{aligned} \end{split}\right.\] The second border line is defined by the following equations: \[\left\{\begin{split} \begin{aligned} x&=t, -10 \le t \le 10\\ y&=10 \\ z&=10(1+t/10), -10 \le t \le 0 \\ z&=10(1-t/10), 0 \le t \le 10 \\ \end{aligned} \end{split}\right.\] In the following picture, the central line is marked in red, and the border lines are marked in blue.
The 3D model of the ruled surface is designed by using OpenSCAD.

Why to use this example

This example of the ruled surface was chosen for the following reasons:
  1. In geometry, a hyperbolic is a doubly-curved surface that resembles the shape of a saddle. It is also a ruled surface, that is, every point on its surface lies on straight lines across the surface.
  2. The fact that hyperbolic paraboloids are ruled surfaces means that they are easy to construct using a series of straight structural materials. As a consequence, they are commonly used to construct thin ‘shell’ roofs. These ruled surfaces can be formed using timber or steel sections, etc. Being both lightweight and efficient, the form was used to minimize materials and increase structural performance. This kind of shapes can also create impressive and complex designs.
In the do over project, I have investigated a different example of rules surface. The straight lines in the 3D print model can be clearly observed.

Comments

Popular posts from this blog

Finding an object's center of mass using integration

Thinking about center of mass As a kid, I would sit in class and balance my pencil on my finger. What I didn't know then was that I was finding the pencil's center of mass. An object's center of mass is a point where the average weight of the object lies. In other words, the weighted position vectors of the object at this point sum to zero (source: https://www.dictionary.com/browse/center-of-mass ). The exact location of this point can be found using calculus. First, it is important to understand the moment . The moment for a two-dimensional object is given with respect to both the x- and y-axes. It is a physical characteristic of the object a certain distance from these axes. It's easiest to think about the axes as reference points for where the characteristic acts; in this case, where the mass is distributed. When computing these moments, the hardest concept to grasp is that the moment with respect to y, for example, is given by the x-coordinat...

Do Over: Integration Over a Region in a Plane

Throughout the semester we have covered a variety of topics and how their mathematical orientation applies to real world scenarios. One topic we discussed, and I would like to revisit, is integration over a region in a plane which involves calculating a double integral. Integrating functions of two variables allows us to calculate the volume under the function in a 3D space. You can see a more in depth description and my previous example in my blog post, https://ukyma391.blogspot.com/2021/09/integration-for-over-regions-in-plane_27.html . I want to revisit this topic because in my previous attempt my volume calculations were incorrect, and my print lacked structural stability. I believed this print and calculation was the topic I could most improve on and wanted to give it another chance. What needed Improvement? The function used previously was f(x) = cos(xy) bounded on [-3,3] x [-1,3]. After solving for the estimated and actual volume, it was difficult to represent in a print...