Monthly Archives :

February 2013

Welcome to the RCI Blog

Welcome to the RCI Blog 1409 565 Eric Roulo

Welcome to the Roulo Consulting, Inc. weB LoG. This blog is intended to provide an informal, direct communication path to interested engineers and managers. I intend to use it as a petri dish for ideas that will develop into longer articles, training, and software products as well as a place to post comments that may not warrant a more detailed blah.

The intent of all posts is to help fulfill our mission of enabling great engineering by helping your organization build world class engineering teams.

In general there will be four categories of post. Training, News, and Software will push to the bottom of the homepage while the uncategorized posts will only reside at the blog site.

The goal will be to publish new content weekly with an 8 week backlog of publish ready articles. Well received entries will be developed into full articles for the monthly newsletter, “Knowledge Based Engineering”

-ejr

Eric J. Roulo – Owner

Real Engineers Program

Real Engineers Program 451 376 Eric Roulo

Real engineers program

The best engineers I have ever worked with are software hackers. The code is usually not elegant, can hardly be used by others, and is so single-minded in purpose as to be *almost* useless. But it allows the author to get an almost impossible job done, and usually about 10x faster.

And therein lies the truth. If the $30k enterprise software can’t accomplish the job, the best engineers program around the deficiency. And this is what separates the best from the rest.

The best don’t complain about the fact the gui doesn’t have a radio button for that function, they provide the analysis needed for upper management to make informed, timely decisions.

Effective Technical Communication – E-Mail

Effective Technical Communication – E-Mail 800 533 Eric Roulo

The most sanctioned company-sponsored waste of human effort is by far e-mail. The reasons for this are many, but the solution for the individual is relatively simple. By following these guidelines, one can free up hours a week of time to focus on your true priorities and provide an example on how to communicate effectively with email. Following will be some guidelines and then the philosophy behind them.

1) Check your email only three times a day and then close your email client

2) Empty your email

 

Recommended Programming Languages

Recommended Programming Languages 600 374 Eric Roulo

RCI recommends that every engineer be a competent programmer. Programming forces a logical rigor into the solution of the engineering challenge and allows for the engineer to develop a framework in which to solve the problem. This ability to force the engineer to diagram their critical thinking is perhaps the best benefit from programming a solution to a general problem.

The recommendations for which language and tools to develop in follow:

  1.  Absolutely don’t be married to a single package for all applications 
  2. Open source, cross-platform solutions are freely scalable and tend to survive software and hardware upgrades well
  3. Are mainstream enough to have a good user base and support
  4. At a minimum know VBA for excel. If you don’t and you’re an engineer, you’re a disgrace

Packages that conform to this guidance that are reasonable common include

Python, Perl, C

You will likely see some heritage fortran code, but I don’t recommend learning it.

Some other good special function codes include Matlab.

For processing stress analysis I typically have a rule that says

for 1 calculation use MathCAD to show the longhand version of the solution and verify units are correct

for 100’s-1000’s of calculations, use excel and VBA that have been recoded to the solutions demonstrated in the MathCAD code. This provides a verification that the code is correct and allows you to select the worst-case calculation from the excel tables and provide a long hand example of it in MathCAD for your final report.

for > 10000 calculations, go to a pure software language like Perl or Python. They tend to scale better than VBA and can be put on a unix cluster to solve while you do other things on your PC. It is not uncommon to process 10’s of millions of individual margins. You just run out of cells in excel, memory, and time on a PC.