Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • name* – Name of the calculation, unique in the Model Class.

  • type* – Accepted values: formula, sequence, parallel.

Formula Calculation Fields

...

  • sequence* – List of calculation names defined in this Model Class.

Parallel Calculation Fields

  • formulaName* – Unique name of an existing Formula of nature model_parallel_calculation, see also Model Logics.

Example

Code Block
languagejson
{
  "definition": {
    "calculations": [
      {
        "name": "calc1",
        "type": "formula",
        "formulaName": "POAI_Test_Calc1"
      },
      {
        "name": "seq",
        "type": "sequence",
        "calculations": [
          "calc2", "calc3"
        ]
      },
      {
        "name": "calc2",
        "type": "formula",
        "formulaName": "POAI_Test_Calc2"
      },
      {
        "name": "calc3",
        "type": "formula",
        "formulaName": "POAI_Test_Calc3"
      },
      {
        "name": "calc4",
        "type": "parallel",
        "formulaName": "POAI_Test_ParallelCalc"
      }
    ]
  }
}

Steps

A list of steps as defined by the following fields.

...