A functional process is something that maps a set of inputs to a set of outputs. This can include production processes, which turn inputs into different outputs, construction processes, which assemble inputs into an output, or physical processes, which change the properties of some or all of the inputs. Their basic notation is:
Set of resource inputs, assuming the output’s multiplicity is one.
A 4-tuple describing a process.
Set of resource outputs, including wastes left over.
A process is what actually maps the inputs to the outputs and is analogous to a function in linear algebra. It includes its own properties needed to measure the costs of processes:
: Like for the definition of
, a hashable identifier.
: Maps
to
.
: A set of resource inputs that describe the cost per run. In my handwritten notes, I use こ as a shorthand subscript, but since hiragana doesn’t work in WordPress’s latex software, I’ll just spell it out “ko”.
: A set of products that are required for the process but not consumed as a cost. Usually this is something like equipment or coolant. I use で as a shorthand, so as above, I will write “de”.
There are some other relevant terms to define:
: Exploitation multiplicity (from the formula
: Set of resources describing the cost per allocation
え: Equipment available (will be written “eq”)
: Overproduction coefficient
The way the cost values are represented is important for how we perform calculations on them. Descriptively, we can treat them as a set of values. Computationally, it is much simpler to use vectors of reals (floats), which include a value for all resources involved in the calculation in an immutable order. For example:
But, when performing calculations on them, they should include all resources:
Thus, calculating the total cost becomes a simple matter of vector addition:
こ
So, the production cost () for something can then be calculated like so:
This is the cost of additional equipment required, which is hopefully zero.
Cost of production, simple
Cost of production, failure-protected.
The value of depends on the product and community in question. In VIAAC theory, hubs have different failure protections than spokes.
What if we have heterogeneous inputs and want to compare two processes? Depending on our constraints, we can either directly compare the energy cost, or we can use the “relative aggregate cost”, defined as such:
Here we are trying to find the relative resource intensity as a proportion of the total supply we have. This means lower is better. An example showing a new process being rejected and accepted based on this can be found in this paste.