A No-Code Approach to Decision Support and Knowledge Capturing

Download the workshop slides.

1. Basic Handyman example in DMN

1.1 Assignment

We use the BPMN.io DMN modeller to represent the following decision procedure:

Steps:

1.2 Solution

Solution file

1.3 Handyman DMN in Interactive Consultant

You can see the same DMN model in the Interactive Consultant by clicking on “Interactive Consultant” at the top.

2. Handyman example in cDMN

2.1 Assignment

Starting from this partial model, represent the following constraints using cDMN constraint tables:

2.2 Solution

View the complete solution here.

3. Updating the Handyman example: diamond drill bit

3.1 Assignment

Extend the model to allow holes to be drilled in tile walls if you own a diamond drill bit. Starting from the solution of the previous exercise, you will need to:

3.2 Solution

View the complete solution here.

4. Component Design

4.1 Basic Model

Starting from this glossary, add the following constraints:

(solution)

4.2 With melting point

We now make the model more readable by adding the information that the “magic numbers” 100, 150, 200 are actually the melting points of the three materials. Starting from the solution of the previous exercise, update the glossary to represent this and then change the constraint table.

(solution)

The resulting constraint table can also be mode more compact with a quantification

4.3 With compatible materials

Similarly to how we added the melting point function, we can also add and define an explicit relation stating that two materials are compatible. This results in this model with named quantification.

How can we now use this to replace the constraint table we had previously?

(solution)

5. Team Selection for R&D Project

For a new research project surrounding “smart compressors”, we want to form a team of capable employees based on some requirements. We are given five employees: Edsger, Ada, Donald, Grace, and Brian. For each of them, we know the following information:

Focus Skills Experience
Edsger Compressor, IoT Design 12
Ada Prototype, Compressor Design, Functional analysis 5
Donald IoT Functional analysis 2
Grace Compressor, IoT, Prototype Project Management 10
Brian IoT, Compressor Functional analysis 1

The rules for the team are as follows:

5.1 Team size

We start from the following model, which already calculates our team size. You can already experiment with it in the Interactive Consultant.

5.2 Focus

Update the glossary of the model with the following concepts:

Next, add the focus information to the model.

solution

Now, add a constraint that all selected team members should know about compressors.

solution

5.3 Years of experience

Update the glossary with the following concepts:

Next, add the experience information to the model.

solution

Now, add a constraint that all selected team members should have at least two years of experience.

solution

5.4 Project lead

Update the glossary to represent that the team should have a project lead.

Add the constraint that the project lead must be selected, and have at least 5 years of experience.

solution

5.5 Skills

Update the glossary with the following concepts:

Next, add the skill information to the model.

solution

Extend the previous constraint to say that the project lead should have the Project Management skill.

solution

5.6 Design constraint

One member of the team will be the designer. This cannot be the same person as the project lead.

solution

Test this out in the IC. Does this produce the desired result? If not, what goes wrong?

Try to fix the model to get to the complete solution.

solution

Useful links