Skip to content

Explanation

Simulation and decision

The Simulation module lets you test hypotheses on your data without impacting production. Create "what if" scenarios, run temporal simulations, and use solvers to find the…

2 min

At a glance

The Simulation module lets you test hypotheses on your data without impacting production. Create "what if" scenarios, run temporal simulations, and use solvers to find the optimal configuration. Compare results side by side before deciding which changes to apply.

Concrete example: you manage a supplier network and want to evaluate the impact of a 10% price change. Create a scenario, apply the modification virtually, observe the cascading effect on orders and margins, then decide whether or not to apply the change.

%%{init: {'theme': 'base'}}%%
flowchart LR
  Create["Create a scenario"] --> Mutate["Apply mutations"]
  Mutate --> Simulate["Run the simulation"]
  Simulate --> Compare["Compare results"]
  Compare --> Decide{"Decision"}
  Decide -->|Apply| Apply["Apply to production"]
  Decide -->|Adjust| Mutate

  classDef light fill:#dce6f1,stroke:#234a7a,stroke-width:2px,color:#1f2a37
  classDef dark fill:#e8a848,stroke:#c48a2a,stroke-width:2px,color:#1f2a37
  classDef accent fill:#5ab5a0,stroke:#3d8b76,stroke-width:2px,color:#1f2a37
  classDef output fill:#edf2f7,stroke:#234a7a,stroke-width:2px,color:#1f2a37

  class Create light
  class Mutate dark
  class Simulate accent
  class Compare accent
  class Decide dark
  class Apply output

What you will do

Key vocabulary

TermMeaningExample
ScenarioAn isolated sandbox where you test modifications without impacting production."Increase supplier A price by 10%"
MutationAn individual modification within a scenario.Change the "price" property from 100 to 110
KPIA key indicator you track to evaluate impact.Gross margin, Total cost, Average lead time
SimulationA temporal execution that advances a scenario step by step.Simulate 12 months of price variations
SolverAn algorithm that searches for the optimal configuration under constraints.Minimize total cost by adjusting quantities
PortfolioA group of scenarios to compare simultaneously.Scenario A vs B vs C
  • Ontologie: scenarios apply to instances of your business model. Mutations virtually modify the properties of your entities.
  • Governance: applying a scenario to production can trigger an approval request if a policy is active.
  • Dashboard: dashboard KPIs can be compared between the reference scenario and your hypothetical scenarios.
  • Workflows: a workflow can create a scenario, run a simulation, and apply the result automatically.

Expected outcome

You can test hypotheses safely, compare impacts on your KPIs, and make data-driven decisions before applying changes in production.

Need help?

Contact us: Support and contact.