Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.96 KB

studies.md

File metadata and controls

43 lines (26 loc) · 1.96 KB

Root


Studies

The Studies atom represents a branch for all underlying study atoms. Creating studies is typically the second step in a simulation work flow. Lets assume that the Models branch of the tree already has been finished and that we want to analyze the models in detail. This typically requires to execute the models many times. The purpose of the studies is to automate that tedious task. Study atoms inherit from ./src/study/study.js. A study might produce results in the Results Results branch of the tree.

Source code

./src/study/studies.js

Construction

A new Studies atom is created either

  • from the context menu of an existing Root atom in the Tree View or

  • by calling the corresponding factory method of the Root atom in the source code of the Editor View:

    ...
    let studies = root.createStudies();	     

Child atoms

The context menu of the Studies atom allows to add child atoms:


Results Results