Computer simulation of geologic processes using multidimensional functions

In summary: I would be very interested in hearing about any progress you make in this area, as I am definitely curious about how to accomplish this.In summary, GPundergrad is trying to create a 3D model of a Kimberlite pipe using code, but is having difficulty finding an algorithm that produces similar results without the use of a simulation.
  • #1
GPundergrad
4
0
Hello all, this is my first topic here at PF, though I have been using this site as a homework aid for quite a while. Just to clarify, this problem is NOT a homework problem.

I have been attempting to create a MOD for the 3D lego-like indy game called minecraft. Minecraft features a procedurally generated fractal terrain which makes for interesting and engaging gameplay through use of perlin simplex noise. For most players, the terrain generator is sufficient. Ores are generated as random conglomerations of 1m x 1m x 1m blocks dependent only on surface depth, and replace the existing blocks of 'stone' when they are made.

Having a background in geology, minecraft's terrain generator leaves much to be desired. Mountain ranges are the result of a pure fractal process without the regard for faults, rock types, and erosion. I understand that for game programmers it may be overly complex and involved to include geologic principles in their generators.

I approached one of my professors with this idea, and she immediately recommended that I create this mod for my senior thesis. As I am currently a mathematical physics & Earth system science major (my university does not have a geophysics program), this senior thesis, if completed, will hopefully give me a good shot at getting into a decent geophysics graduate program.

I am initially coding the entire generator in Matlab. Once the generator works, I will work on getting the methods to work in minecraft's native java code.

Soo on to the interesting stuff. So far, this is what the generator does:

-1 it creates a 3D matrix (100x100x256) filled with integer values which correspond to the types of material at that x,y,z index

-2 it partially fills in this matrix (we will call this matrixA) with three layers of rock:
* alluvium, which is 10 layers thick
* Metamorphic rock, which is 30 layers thick
* Intrusive igneous rock (aka granite) which is 20 layers thick, with the lowest layer being at the bottom of the map

-3 it uses a 10x10 matrix filled with random values to create an interpolated 2D heightmap which is used to offset the starting elevation of MatrixA
-4 it fills in the space between 'bedrock'/z coordinate index 1 and the bottom of the resulting granite offset so that there are no voids under the terrain.
-5 renders the side and the top of matrixA as cubes colored corresponding to their rock types.

My next step in this mod will be to add kimberlite pipes (it may seem like a weird jump, let's just roll with it for now):(http://en.wikipedia.org/wiki/Volcanic_pipe)

Kimberlite pipes are basically explosion pits from ancient volcanoes which take the form of a steep cone from ~75m wide to 1.5km wide, and are the primary source of natural diamonds.

I would like my world to at this time include an algorithm for producing kimberlite pipes, however I'm not very sure how to do this. Its easy enough to produce a 3d structure of a cone in matrixA, but a perfect cone isn't what I'm going after:
595px-VolcanicPipe.jpg


notice that though the diatreme (volcanic pipe) follows a roughly conical shape, there are plenty of wiggles and uncomformities which make for a very organic looking structure. additionally, the whole of the pipe is not necessarily conical in nature:
1-s2.0-S0169136808000188-gr5.jpg


So my question is this: what algorithm should I use to create similar 3D structures inside matrixA without using a simulation of physical processes/without utilizing empirical volumetric data? I need to be mindful of both computational efficiency and the discreet nature of matrixA.
 

Attachments

  • Screen Shot 2012-09-01 at 1.53.18 PM.png
    Screen Shot 2012-09-01 at 1.53.18 PM.png
    57.8 KB · Views: 481
Physics news on Phys.org
  • #2
Hey GPundergrad and welcome to the forums.

My understanding of your question is that you want to create 3D shapes (or holes) in the context of a volumetric matrix where each element of the 3D matrix corresponds to information about a particular material or absence of one.

The technical term for this is a voxel (volumetric element as opposed to pixel which is picture element) and I would like for you to clarify if I have my thinking right.

If this is right, then the technique you need to use is going to be based on the Bresenham Line Algorithm:

http://en.wikipedia.org/wiki/Bresenham's_line_algorithm

What this algorithm does is basically find the pixels of a line in 2D when it needs to find the best set of pixels to represent the line in a quantized manner.

What you will need to do is to apply the exact same idea to a 3D scenario if I have interpreted your problem correctly.
 
  • #3
Well in essence that is what I am trying to do, though Matlab has nice functions that make transcribing functions to discreet values easy. My question, and the thing that has been bugging me for a very long time is that I don't know how to create such a function/algorithm that would create a 3D shape similar to many real Kimberlite pipes. In this case, a simple z = x^2 + y^2 just won't cut it.
 
  • #4
GPundergrad said:
Well in essence that is what I am trying to do, though Matlab has nice functions that make transcribing functions to discreet values easy. My question, and the thing that has been bugging me for a very long time is that I don't know how to create such a function/algorithm that would create a 3D shape similar to many real Kimberlite pipes. In this case, a simple z = x^2 + y^2 just won't cut it.

So which part are you having trouble with? Generating an equation or model for the actual hole structure to cut or creating a method to get the voxel definition of those holes in the same motivation that the above line algorithm does for 2D to get the pixel space definition?

What you should start doing is to implement the algorithm for a single plane and then give another algorithm a number of planes in which it will then generate a set of voxels intersecting those planes.

After this then you can just fill all the voxels on the inside of that object and mark them as holes or whatever material you are thinking of.

The difference between the line algorithm vs the 3D plane implementation is that you will have two independent loops instead of one: you basically do the bresenham algorithm "twice": instead of doing one line you do a series of "line scans" where you trace rays from one side of the plane to the other.

So in short you give it a bunch of planes (i.e. triangles) and you do the bresenham algorithm in the following way:

1. Do two bresenham scans: start at one point A and do it from A to B and A to C. These generate pairs of voxels that you will use to do a loop of line scans.

2. For each pair of points (generated from the first line scans above), do an individual bresnham scan and store all the voxel elements that were found by each scan.

3. Do this for all triangle objects to get a list of all voxels that are used to define the object.

4. Once you have this then fill all interior voxels as holes or whatever data you need.

If you supply planes then you can create as much detail as you want (more planes can be used for more detail) and the algorithm works for any kind of object definition (once you convert it to a bunch of triangles).
 
  • #5
Ah, I guess I should probably be a little more clear.

I have absolutely no problem defining which voxels I need to 'color in.' When i discovered how to do that, I spent like 6 hrs doing it on all sorts of shapes (it was pretty fun xD).

The problem is I don't have any function to define these initial points. I am not using any predefined datasets or physical simulations to give me coordinates a priori. I don't have any way of defining point 'A', or for that matter B,C,D... etc;
 
  • #6
GPundergrad said:
Ah, I guess I should probably be a little more clear.

I have absolutely no problem defining which voxels I need to 'color in.' When i discovered how to do that, I spent like 6 hrs doing it on all sorts of shapes (it was pretty fun xD).

The problem is I don't have any function to define these initial points. I am not using any predefined datasets or physical simulations to give me coordinates a priori. I don't have any way of defining point 'A', or for that matter B,C,D... etc;

So do you need a function?
 
  • #7
After 'meditating' on your answers, I read a bit further and I happened upon the Midpoint Circle Drawing algorithm; http://techforum4u.com/entry.php/816-How-To-Implement-Mid-Point-Circle-Drawing-Algorithm-In-C
I also created a small subroutine in Matlab which creates an interpolated polynomial [pp(ø) = radius from origin]. The polynomial is created like this:
Code:
for theta=2*pi/10:2*pi/10:2*pi 
    z(i) = 10 - 2*rand(1);
    t(i) = theta;    
    i = i +1;
end
z(i) = z(1);
t(i) = 0;
pp = spline(t,z);

pp defines the perimeter of the k' diatreme at a specific level. If I can create a succession of these and interpolate points on the perimeters of different planes, I can define the outward surface of the k' diatreme. However, I'm having trouble adapting the Midpoint circle Drawing algorithm to work with a radius which is dependent on θ. So I guess I do need a function of sorts?
 

1. How are multidimensional functions used in computer simulation of geologic processes?

Multidimensional functions are mathematical equations that involve multiple variables, such as time, space, and physical parameters. These functions are used to represent the complex interactions and processes that occur in the Earth's geologic systems, and are essential in creating accurate computer simulations.

2. What types of geologic processes can be simulated using multidimensional functions?

Multidimensional functions can be used to simulate a wide range of geologic processes, including plate tectonics, volcanic eruptions, erosion and sedimentation, groundwater flow, and climate change. These functions allow scientists to model these processes in a virtual environment and make predictions about how they may change over time.

3. What are the benefits of using computer simulations for studying geologic processes?

Computer simulations offer several advantages for studying geologic processes. They allow scientists to manipulate variables and test different scenarios in a controlled environment, which can be difficult or impossible to do in the field. They also provide visual representations of complex data, making it easier to understand and analyze the results.

4. How do scientists validate the accuracy of computer simulations for geologic processes?

Validation of computer simulations involves comparing the results of the simulation to real-world observations. This can include data from past geologic events, such as earthquakes or volcanic eruptions, or from ongoing monitoring of geologic processes. By making sure the simulation accurately reflects these observations, scientists can have confidence in its accuracy.

5. What are some potential applications of computer simulations of geologic processes?

Computer simulations of geologic processes have a wide range of potential applications. They can be used to predict and mitigate the impacts of natural hazards, such as earthquakes and landslides. They can also inform resource management decisions, such as predicting the effects of climate change on water resources. In addition, simulations can aid in the development of new technologies and methods for extracting and utilizing natural resources in a sustainable manner.

Similar threads

  • Earth Sciences
Replies
5
Views
2K
Replies
21
Views
4K
  • Astronomy and Astrophysics
Replies
1
Views
1K
Replies
2
Views
881
  • Sci-Fi Writing and World Building
Replies
21
Views
1K
Replies
4
Views
2K
  • Advanced Physics Homework Help
Replies
6
Views
1K
Replies
10
Views
2K
  • Sci-Fi Writing and World Building
Replies
6
Views
2K
  • Special and General Relativity
Replies
6
Views
1K
Back
Top