Model-This.com

Model What!? Model-This!

Model-This.com header image 1

Introduction to Machine Control

November 24th, 2007 · 1 Comment

An area in which I place a great deal of thought these days is in machine control systems. Particularly those systems that are used as grade control for earth moving equipment, such as for dozers, excavators and road graders. This systems function using

1. Some type of positioning systems (usually GPS or Robotics)

2. Device interface (with or without hydraulic interfaces)

While this is an over simplification of the systems it serves the purpose of this introductory post, as the focus of this post is not on the systems themselves but rather the data, models, they consume.

The system with which I work daily is a product of Carlson Software. The machine mounted software is title Carlson Grade. Hats off to Carlson on their current product line-up, they are made right. All of the data files produced on one product are directly movable to their other software. So files created on the desktop platform are usable with their data collectors and their machine control systems. Nice.

 I have heard various arguments about what should be contained in a final and complete Digital Terrain Model. Some may argue that break lines and spot elevations need to remain in the final file. I don’t agree, neither does Carlson. I am of the opinion that the final DTM file should only contain defined planes and surfaces, no breaklines and no spot elevations. The edges of the plane segments should follow the breaklines, no need in storing redundant data.  

Carlson has two dtm files structures. The older of the two has the file extension .flt and it is a txt file containing triangle edge data. The newer and faster format has the file extension .tin and is a binary file containing vertices and triangle data.

I spend a lot of time interpreting civil site plans prepared by others and then building DTMs or TINs from them. As time goes on I hope to post a few tricks and approaches that I have found useful.

→ 1 CommentTags: Machine Control

Least Squares Intro

November 22nd, 2007 · No Comments

There are many ways to approach modeling data and the one I am going to present here I was taught at ETSU in a class called, at the time, Advanced Surveying Mathematics. It is rooted in the realm of Linear Algebra and Calculus and attempts to model data with constraint equations and the minimizing of residuals.

 

This method uses two matrices to store and model data. The first being matrix J. Matrix J contains one row for each measurement and one column for each unknown variable. Each element contains the derivative with respect to the variable in the column it resides. The second matrix, is matrix k, it contains the residual of that measurement, or the value that the measurement should be minus the calculated value of that measurement.

 Least Squares Solve Block

Matrix J and K are applied in this equation which yields an update to the variables and the process is repeated.

 

  

Pardon this simplistic explanation, I am not a mathematician.

  

I have successfully built models of lines, circles, polynomials, triangulations, trilateralizations and traverses among other things. It is my hope to post examples and maybe even some code snippets in the coming days. 

   

→ No CommentsTags: Least Squares