Spreadsheet-Based Programming Tools
I wrote a set of Excel VBA libraries in order to build spreadsheet models like "real" software - that is, as modular, testable, maintainable computer programs. My colleagues and I used them to build numerous technical cost models for energy and automotive manufacturing customers. The libraries were the foundation for more than one million dollars in consulting profits for my former employer.
Motivating Application: Technical Cost Modeling
The models I build support early-stage, cost-based decisions about the technical design and organization of engineering systems. They do so by properly framing the analysis of high-level design tradeoffs. I have recently built models for upstream oil and gas projects such as:
- Large multi-well land gas field planning cost estimation and optimization
- Multi-well land oil pad design
- Arctic offshore exploration rig selection
- Arctic offshore exploration rig contracting strategy
I have also recently supported colleagues building models for unconventional oil well manufacturing and filament-wound carbon fiber automotive driveshaft manufacturing.
Typically, technical cost models incorporate predictive technological process components, operations implementation components, and financial components. For example, well spacing is a major design variable in a multi-well-pad oil drilling operation. Tighter spacing might result in smaller pad construction costs and faster rig move times, but also in longer drilling times and future lost production due to the need to shut-in producing wells during workover interventions on nearby wells. The relationship between well spacing and system cost can't really be examined in isolation without modeling a certain amount of context - the "effect radius" for different support rigs, the future workover schedule, the financial convention for valuing deferred oil production, etc. (For a good overview of technical cost modeling, see this paper.)
It is rarely possible to define up front just which elements of this decision-specific context are essential to the problem, and of those, which must be fleshed out in detail and which can be coarsely approximated. It requires multiple iterations in which model increments are built, used, and re-built based on what is learned. The modeling process - incrementally developing and repeatedly refactoring a set of complex, nested relationships in response to expert feedback - is essentially a software development process, regardless of how the models are actually implemented.
One of our major requirements has been that we implement our models using spreadsheets. This is because we work closely with non-programmer subject matter experts - engineers, economists, and project managers - to develop them. Spreadsheets, specifically Excel, are a common tool available across an organization. Engineers are used to building their own model components, and evaluating those developed by others, in spreadsheet form. Analysts are used to using both built-in and 3rd party Excel analysis tools. Often IT issues make Excel the only modeling environment available to end-users anyway.
Barriers to Iterative Spreadsheet Modeling
Excel is an excellent vehicle for developing simple models in close concert with non-programmers. Excel on its own is poorly suited to the iterative development of complex models. I wrote the VBA libraries described below to bridge that gap.
As anyone who has confronted a complex spreadsheet knows, it is very difficult to treat spreadsheet model development as the iterative software development process it should be. Excel's declarative formula recalculation is what makes it such a good tool for small, short-lived models, and for users that are primarily non-programmers. However, Excel lacks the most basic ability to create and use abstractions that harmonize with that computational model. (Burying all of the model-specific logic and relationships in VBA code doesn't suffice when mainly non-programmers must create, validate, and communicate about them.)
Complex, long-lived spreadsheets tend towards all manner of pathological "coding" practices - copy and paste of blocks of data and formulas, impossible-to-decipher "mega-formulas", brittle model-logic that depends intimately on the details of data layout, etc. This imposes a huge "accidental complexity" burden on the would-be spreadsheet model developer. There is a relatively low threshold beyond which it becomes impossible to understand the essential relationships embodied in the model, change them with confidence, or even ensure their basic correctness.
VBA Libraries
DRY-Excel
Spreadsheet Functional Programming
The VBA libraries are motivated by the need to treat spreadsheet development as a proper software development effort. That in turn requires a proper programming language. The DRY-Excel library (DRY for "don't repeat yourself") gently extends Excel's formula syntax into a full-fledged functional programming language. Developers can define true functions using an Excel-formula-like syntax - essentially Excel formulas with parameters. For example:
relative_effort(learning_rate, n) = [n] ^ (LN(1 - [learning_rate]) / LN(2))
is a function often used at the earliest stages of a cost model to estimate how a team performing a repeated task (such as drilling a set of similar wells) learns to be more effective with experience. The learning rate constant is chosen based on comparison to previous projects of a similar nature. When called with a given learning_rate and n, the function returns the ratio of the effort involved to complete the nth task to the effort involved to complete the first.
Much more important than its syntax is the fact that DRY-Excel also extends the range of values that can be stored in Excel cells, passed to functions, and returned from functions. In particular, DRY-Excel functions are first-class values that exist in spreadsheet cells and participate in Excel's ordinary recalculation. That lets a modeler encapsulate model functionality behind a proper interface. For example this formula:
=curry("relative_effort", learning rate cell reference)
returns a function to the cell it is called from. The returned function takes only one parameter, n. It is a partial application of relative_effort that closes over an input cell value containing the project-specific learning rate. Now, the rest of the model depends only on the existence of a function of the form f(n), which it can call like so:
=fcall(curried relative effort function cell reference, 42)
This particular modeling pattern, enabled by DRY-Excel's support for true functional programming, fits in very well with the conventional spreadsheet computational model. Critically, if a user changes the cell containing the learning rate, the function returned by the above call to curry is recalculated as part of Excel's ordinary recalculation process, as are any of its callers, and the cells that depend on their results, etc.
Because the implementation of the calculation of "relative effort for nth task" has been encapsulated behind a function with a particular signature, it can be changed as the team building the model learns more about their problem. For example, if it becomes apparent that the task at hand does not benefit from significant learning, the "experience" module can return a function calculated with this formula:
=constantly(1)
which returns a function that always returns 1. If project economists later decide that the Brett-Millheim experience curve is more appropriate:
brett_millheim_relative_effort(C1, C2, C3, n) = [C1] * EXP((1 - [n]) * [C2]) + [C3]
it can be used instead (again by partial application), and the rest of the model doesn't need to change.
Note that curry, fcall, and constantly are all part of the DRY-Excel library. curry and fcall are implemented in VBA, while constantly is itself implemented with DRY-Excel syntax:
constantly(arg) = [~ f() = [arg] ~]
where the [~ ... ~] notation denotes a lambda function. (Because in many ways it is more powerful than VBA for working with Excel values, many DRY-Excel library functions are actually implemented in DRY-Excel syntax.)
The DRY-Excel library contains a reasonable subset of the function- and list-manipulation functionality that is found in the standard libraries of typical functional programming languages - map, filter, reduce, append, zip, etc. (I have been heavily influenced by studying the design of Common Lisp, and have followed its design patterns when possible.) It is certainly not exhaustive; I have implemented library functions only as needed in response to my colleagues' and my modeling needs and there are quite a few gaps.
Functional Relational Programming
A typical technical cost model computes many intermediate resource requirements on the way from technical parameters to cost. For example, manufacturing an automotive part requires materials, labor, energy, time, etc. Some resources, such as materials, translate readily to cost. Others, such as time, translate to other required resources, such as capital equipment availability, floor space, or labor shifts.
It has proven to be a powerful modeling pattern to defer summing individual cost items until as late as possible in the flow of computation, and instead assemble and translate between tabular sets of resource requirements. In fact, when possible, the ideal model output is not a scalar cost amount, but instead a table of cost items, containing not just cost amounts but also contextual and categorical information about the pedigree of each line item. Excel's own built-in data analysis and summary tools, such as pivot tables, are meant to work with such tabular information, so this pattern is very compatible with natural Excel idioms.
To support the necessary table manipulation, the DRY-Excel library contains functions for restricting, projecting, combining, and extending tables, as well as for transforming table columns. Although it falls far short of being a complete implementation (no joins, etc.), the design and development of DRY-Excel were strongly influenced by the idea of Functional Relational Programming. (I think the concept is particularly well-suited to both spreadsheet development and working with non-programmers.)
As a simple example of the concept in action in a technical cost model, consider a submodel that computes materials costs for an operation. Internally, it might compute a table of material resource requirements, and expose this table with all of its materials-specific columns as an auditable intermediate result. However, the same table might be used downstream in the cost calculation by project-ing away columns relevant only to the submodel, extend-ing it with additional columns for the cost of the material line items and their categorization within the larger model as materials costs, and including it within the main model’s pivot table source by taking its union with the result of other submodels.
Modeling in functional relational terms also facilitates treating tabular data from e.g. Sharepoint lists or relational database queries as model inputs and not model contents. Using Excel as a makeshift database is another pathology that complex spreadsheets often succumb to. While DRY-Excel is certainly not required in order to avoid doing this, its ability to work with tabular data makes it easier to use proper data stores because data can be readily transformed from its available form into a suitable model input.
Excel UDF Construction Kit
DRY-Excel rests on a lower-level library of support tools intended to support ordinary Excel-VBA software development. ("UDF" stands for “user-defined function”, an Excel-VBA idiom for side-effect-free custom functions meant to be called from Excel formulas. The DRY-Excel functions implemented in VBA are all UDFs. However, the kit is also useful in support of more general imperative macro development.)
Unit-Testing
The construction kit library actually contains two very lightweight unit-test modules implemented in VBA. They borrow the basic ideas from the popular xUnit set of unit-test frameworks - automated test runs asserting expected behavior. However, they are much smaller, specific to Excel and VBA, and not particularly object-oriented.
The more important unit-test module is meant for testing Excel formulas. It’s main use comes in testing UDFs. For example, here are some of the test formulas for the append function in the DRY-Excel library:
...
=expect(isEmptySeq(append(seq(),seq())), "appending the empty seq to anything has the expected non-effect")
=expectEql({42},append($A$3,seq()),"append() always returns a 1-D array (or the empty seq)")
=expectEql({42},append(seq(),$A$3))
=expectEql({10,20,30,40},append($A$5:$D$5, seq()))
=expectEql({10,20,30,40},append(seq(),$A$5:$D$5))
=expectEql({100,200,300,400},append($A$7:$A$10, seq()))
=expectEql({100,200,300,400},append(seq(),$A$7:$A$10))
=expectEql({42},append({42},seq()))
=expectEql({42},append(seq(),{42}))
=expectEql({1,2,3,4},append(seq(),{1,2,3,4}))
=expectEql({1,2,3,4},append({1,2,3,4},seq()))
=expectEql({1,2,3,4,5,6},append({1,2,3},{4,5,6}))
=expectEql({1,2,3,4,5,6},append({1,2,3},{4;5;6}))
=expectErrValue(append(seq(),42), "append() returns #VALUE! if either argument is not a seq")
=expectErrValue(append(42,seq()))
=expectEqual(seq({1,2,3}, {4,5,6}), append(seq({1,2,3}), seq({4,5,6})), "append() works with non-scalar values")
...
Successful tests are shown in the worksheet like so:
ok: =expectEql({1,2,3,4,5,6},append({1,2,3},{4,5,6}))
and failed tests:
** FAIL **: Expected eql x, got #V(6){1,2,3,4,5,6} and #V(6){1,2,3,42,5,6}: =expectEql({1,2,3,4,5,6},append({1,2,3},{42,5,6}))
The formula test module contains a macro, that, when run, will collect and display all failed test results and their locations in the workbook and display them on a generated worksheet.
Although it was originally intended simply to support my own development of VBA UDFs (and later, UDFs implemented with DRY-Excel), the formula test module has proven to be very useful in support of model-building as well. A typical model will contain numerous invariants that can be expressed as formulas. In keeping with the idea that models should be developed like software, automatically testing such relationships as the model is constantly refactored is essential.
The other unit-test module is meant for testing arbitrary VBA code, including imperative code with side effects. Like in a conventional test framework, there is support for automatic setup and teardown of any necessary state. The module provides a set of test assertion routines, including assertions for expected VBA errors. As with the formula version, failed test results are displayed in a generated worksheet.
Debugging and Build Support
The construction kit contains a substantial support library for general VBA programming. Most notably, I built a comprehensive debug tracing, logging, and assertion system. Assertions are an essential complement to any programming system, but the native ones provided by VBA in Excel are inadequate. Unlike conventional C, VB, or .NET assertions, they cannot be “compiled” away for efficiency in release mode. They also provide very little information about their location and cause when they fire. The tracing and assertion system tracks entry and exit during debug mode, allowing both assertions and messages to provide context when they fire. It can easily be turned on and off in order to release code. The tracing system in particular proved essential to the development of the DRY-Excel library because of its substantial use of recursive code.
The construction kit also contains routines to automatically export and import both code modules and worksheets containing test formulas to and from ordinary text files. This is necessary to allow an Excel VBA developer to take advantage of source control systems without repeated manual effort.
Non-Software Engineering Work
Much of my time with Stewart Research did not involve software development directly. Here are some highlights:
- I was an integral part of the writing team that was awarded (pending negotiation) a $3.7M Department of Energy grant for "Development and Commercialization of a Novel Low Cost Carbon Fiber". Technical cost modeling supported by the spreadsheet functional programming libraries makes up about $500K of the total work to be performed by Stewart Research as a subcontractor in 2012.
- I was an integral part of the writing teams that were awarded two NIST Advanced Technology Program grants totaling $4M: Flexible Manufacturing Techniques for Large Plastics Molds and Highly Accurate Large-Format Machining for Mold and Die Production.
- I set up, operated, and managed Stewart Research's in-house rheological testing and thermal analysis laboratory. I was responsible for mastering test techniques, devising new techniques, and directing several testing engineers. Much of the work involved test development for novel polymer materials.
- I worked closely with Altair Engineering to develop mold-filling and mold-cooling simulations for experimental composites applications.
- I designed a system for accurately measuring the in-plane permeability tensor of a fiber-reinforcement preform.
- I designed and oversaw construction and testing of a prototype resin injection system for an experimental composite molding process.