valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

ex-complex.md (1355B)


      1 # Complex Examples
      2 
      3 1. [Transport FOB destination](#transportation-with-transfer)
      4 1. [Production using stage and state](#manufacturing-and-workflow)
      5 
      6 #### Transportation with transfer
      7 
      8 Bob purchases 30kg of apples from Alice and Claudia transports them (FOB destination)
      9 
     10 ![transport diagram](https://raw.githubusercontent.com/valueflows/valueflows/master/release-doc-in-process/transport-transfer.png)
     11 
     12 [import, lang:"yaml"](../../examples/transport-with-transfer.yaml)
     13 
     14 #### Manufacturing and workflow
     15 
     16 A component is produced (manufacturing pattern) and tested (workflow pattern).  QT ("quality testing") gives pass and/or fail outputs.  The failed components are passed back into a source resource (because it can be re-used as an input as part of the QT process, to be used in this or the next manufacturing run.
     17 
     18 The QT needs the stage and state of the input component resource, because QT would only be done on components that are made and not tested yet.  By the same token, components would only be sent into the next assembly process if they have passed the QT process/stage (not part of this example).
     19 
     20 This example includes recipe, plan, and actuals.
     21 
     22 ![stage-state diagram](https://raw.githubusercontent.com/valueflows/valueflows/master/release-doc-in-process/stage-state.png)
     23 
     24 [import, lang:"yaml"](../../examples/workflow-stage-state.yaml)