Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Tutorial 1
Getting started

Learning goals

  1. Getting familiar with Quaestor interface.
  2. Adding functions and constraints.
  3. Providing references and properties for parameters.
  4. Creating a multiple case solution.

Prior knowledge

...

When Quaestor is started, an empty knowledge base is automatically created. 

Image Modified In the Knowledge browser, minimize the Quaestor node, and expand the NewQkb node (figure 1).

Figure 1    Expanding the Newqkb node

...

  •     Lpp: Length between perpendiculars

  •     B: Moulded breadth

  •     T: Draught from keel to Construction Water Line

    Image Modified In the Knowledge browser Image Modified Top Goals/Undefined and select new Class (Ctrl+N). Provide the class with the name Main Dimensions. Note that the input box will already contain the word "Goals". To make a new class, delete Goals and write your class name (in this case Main Dimensions). Sub classes can be defined by adding the main class with sub classes separated by points: Goals.Sub goal

Figure 2    Creating a new class in the knowledge base 

The class is now shown in the knowledgebase tree, and we can add the parameters Lpp, B and T.

Image Modified Select the class Main Dimensions. Image Modified in the right-hand side of the knowledge browser, and select New Parameter/Function(Ctrl+I), see figure 3. Note that the last parameter in focus will be shown in the input field (most probably QKnowledgebaseVersion). Delete this parameter, type Lpp and click the Value button. Repeat these actions for the parameters B and T.

 

Figure 3    By right clicking in the right-hand side of the knowledge browser, parameters can be added 

...

The first requirement is already satisfied, so let's assign dimensions to the parameters.

Image Modified Select the Lpp in the Knowledge Browser. In the Frame Viewer, change the ? sign to m, the dimension for Lpp (meters). A list of possible dimensions is automatically shown when you type.

In the larger area of the Frame Viewer, a reference can be assigned to the parameter. A proper reference is important, as users of the knowledgebase may not be certain of the exact meaning of the parameter. Please also read Documentation of knowledge for more details.

Image Modified Provide Lpp with the reference Length of the ship (figure 4).

 

Figure 4   In the Frame Viewer, a dimension and reference can be assigned to the parameter

NOTE: The dimension of a parameter can also be assigned in the Slots & Properties window. Just scroll down to the Dimension row, and change the value.

 Image Modified Assign a dimension and a reference to the other parameters B and T, just as described above. Of course, the breadth and depth of the ship are defined in meters.

Now only the last requirement for valid parameters has yet to be fulfilled:

...

This qualification can be provided in the Slots & Properties window.

Image Modified Select the parameter LPP. In the Slots & Properties window, scroll down to the Determined by row. Change the value to VR: User only, as the parameter LPP is input (instead of defined by a relation), see figure 5.

 

Figure 5    Let Quaestor know how a parameter should be determined     

...

to show that Quaestor knows enough about this parameter to use it in a computational model.

...

Image Modified Make sure that B and T are determined by VR (Value Requested):User only too.

Note that above you have explicitly added Lpp, B and T as parameters to the knowledge base. 
You are also able to implicitly add parameter by creating relations that contain new parameters. Quaestor will automatically add these new parameters to your knowledge base (so implicitly). You will see this next.

...

We'll add two relations, one for salt water and one for fresh water.

Image Modified  Select Top Goals/Undefined in the knowledge browser, Image Modified in the right hand side and select New Relation (Ctrl+N). In the upper part of the new window, delete any proposal (Quaestor may have filled in the last selected parameter), and enter

Rho = 1025

(belonging to salt water), and press Save (figure 6).

 Figure 6   Entering a relation 

...

Because of entering the relation, the parameter Rho has automatically been created. Furthermore, note and realise that the parameter is created in the Class in focus when saving the relation. For Rho to be a valid parameter, a dimension should be assigned.

Image Modified  Provide a reference for rho and assign it the dimension kg/m^3. Rho is now a valid parameter. Furthermore, make sure rho is determined by SYS: System/Equation, as a relation is used to determine rho.

The following might seem a bit unconventional: a second relation is given for Rho. This is a nice example of how quaestor works: In a calculation, Quaestor can find numerous calculation paths and automatically chooses the most appropiate one based on constraints and available data. An infinite number of relations can be assigned to one particular parameter.      

Image Modified  Add the following relation (belonging to fresh water) in a similar way as described above

Rho = 998

5    Creating constraints

The two relations for the density of the water are only valid for their corresponding watertype. Therefore, a constraint is added to each relation. A constraint is simply a restriction for the validity of the relation.

Image Modified  Double click Top Goals/Undefined in the knowledge browser: all relations in that class are shown (this will work for any class). One can always edit a relation by selecting it and pressing F2 (or Image Modified and select edit). This is also a useful method to find out which relation you actually selected.

Now Image Modified the relation Rho = 1025 and select Constraint->Add New. In the upper part of the new window enter the following constraint:

Watertype$= "SW"

and press Save (figure 7).

 

Figure 7   Adding a constraint to a relation

...

We repeat the process for the other relation: 

Image Modified  Add the constraint: Watertype$ = "FW" to the relation Rho=998. Note that the expression editor assist you with the presentation of existing parameters and intrinsic function. When you press enter while an existing parameter or function is blue, this parameter or function is placed in the expression editor.

Both relations are now connected to the corresponding watertype by means of the value of the string Watertype$. Note if Rho is needed in the calculation progress, Quastor will note that the watertype is needed and will ask the user for this value (because it is assignedassigned User Only).

TIP: By selecting a parameter in the knowledge base and then double clicking the box below the knowledge base tree, the relations defining that particular parameter are visible (figure 8).
Moreover, when you select a relation in the knowledge base, and double click that box, the parameters that can be calculated by the selected relation are shown.
When single clicking the box, all connections to the parameter or relation are shown. See also information on the Knowledge Browser.

...

Because there are only two possible values for Watertype$ (SW or FW), it's easy to integrate a dropdown box. 

 Image Modified  Select Watertype$ in the knowledge browser, and add the following text as reference text in the frame viewer (figure 9):

Watertype: 

SW<eq>Saltwater 

FW<eq>Freshwater

 

Figure 9   A dropdown box is created by entering this information in the reference slot of the frame viewer

...

On the basis of the earlier defined parameters and the block coefficient Cb , the displacement of the ship can be calculated.

 Image Modified  Add the following relation to the class Main Dimensions:

DISP= Cb*Lpp*B*T*Rho/1000

which defines the displacement of the ship in tons

Note that two new parameters are created: the block coefficient Cb and the displacement DISP. In order to keep the knowledgebase meaningful, it is necessary to provide references, dimensions and determined by values for these parameters.

...

Image Modified  Provide references, dimensions and determined by values for Cb and DISP. Cb has no dimension (-), DISP should be in tons (t). Just press ok if Quaestor notes that tons is no base dimension (kg), it is just to inform you. We covered this by dividing DISP by 1000. The determined by values should be VR: User Only for Cb, and SYS: System/Equation for DISP, as the block coefficient is input and the displacement is determined by a relation.

8    Creating a solution

Let's perform our first Quaestor calculation. A solution is always determined by one or more Top Goals. A top goal is a parameter (or object) that is your final calculation target, in this tutorial it's the displacement of the ship. 

 Image Modified  Select the class Main Dimensions in the knowledge browser. Double click the parameter DISP.

Note that the  sign of DISP changed to , indicating that it's a top goal for the calculation.

Calculations and solutions are managed in the workbase. Here, solutions can be created, redone (with different data), examined and deleted. 

...

Image Modified  In the workbase, click the Image Modified button when you use classic buttons or the "Create Solution" button when you use the Workbase buttons to start the calculation with top goal DISP.

The calculation progress is started, and Quaestor first collects all input data (figure 10).

...

Entering data is easy: just type a value for each selected parameter and press enter to switch to the next one.

...

Image Modified  Enter the following data for our first calculation:

        B= 10   Cb= 0.55   Lpp= 60   T= 6   Watertype$= SW (Salt Water)

Note that the input of Watertype$ consists of a dropdownbox, which we created in (4), see figure 11. 

...

 Figure 11   Watertype$ can be selected in a dropdownbox

 

After providing the data you have to press the  button or "Accept input & Continue" button to continue. The actual calculation is started now, and the right-hand side of the workbase shows the situation of figure 13. During the calculation, the box indicated with the blue arrow shows the status of the calculation.

Because this is a very simple example, the final state is alost immediately shown.

 

 Figure Figure 13   Status of the calculation and solution

...

As mentioned in the objective, we'd like to create a dataset of systematically varied ships. We could of course perform several calculations with different input data by hand, but it's much easier to use the ability of Quaestor to create multiple case solutions. To keep the complexity of this example within reason, we will only vary the breadth and length of the vessel. Please note that due to some important conceptual reasons the latest Quaestor release can only perform calculations on ranges of parameters when you alreade have created a solution.

Image Modified   In the workbase, select the solution you have already created (called the same as the top-goal parameter DISP). Restart the solution by pressing the Image Modified or "Redo Solution" button in the workbase. Quaestor will present the previous input, change the following input:

B= 9(0.5)11 m    Lpp= 55(2)69 m

In this way, B and Lpp are defined by a range, given the start value, step size and end value. For example, Lpp is defined from 55 to 69 meter, with steps of 2 meter.

Quaestor will ask if it should create a case matrix for Lpp (figure 15), click yes (an explanation will follow).

 

Figure 15    Quaestor asks if a case matrix should be created 

...


Our multiple case solution table is sorted by the breadth of the ship, as shown in figure 16. Suppose we'd like parameter Lpp the leading parameter in this table.

 Image Modified   In the knowledge browser, select the parameter Lpp. In the Slots & Properties window, scroll down to the row Output to, and select HEADER (figure 17). Now, refresh the table of the multiple case solution by clicking another solution, and then again the multiple case solution. The table is now leaded by Lpp.

 Figure 17   By selecting Output to HEADER, the parameter will 'lead' the multiple case solution table

A lot of cases in our solution don't meet the design criteria: a displacement between 2000 and 3000 ton. We could have fixed this by adding a constraint to DISP, but another way is to use a filter in the solution table.

...

Image Modified   In the workbase, select the last (multiple case) DISP solution, and click the Image Modified  or "Filter" button. The filter window shows. For DISP, select Range as filter, fill in 2000 for Lower bound and 3000 for upper bound (figure 18). Click the Applybutton.

 

 Figure 18   With a filter, cases that do not fulfill the filter conditions can be made invisible

...

You can verify your results by comparing it to [Tutorial 1 Finished] 

Continue to tutorial 2 >>