Skip to content

Equation

This page provides comprehensive information about the structure and components of the data model, including detailed descriptions of the types and their properties, information on enumerations, and an overview of the ontologies used and their associated prefixes. Below, you will find a graph that visually represents the overall structure of the data model.

Graph
flowchart TB
    equation(Equation)
    eqvariable(EqVariable)
    eqparameter(EqParameter)
    equation(Equation) --> eqvariable(EqVariable)
    equation(Equation) --> eqparameter(EqParameter)

    click equation "#equation" "Go to Equation"
    click eqvariable "#eqvariable" "Go to EqVariable"
    click eqparameter "#eqparameter" "Go to EqParameter"

Types

Equation

Represents an equation that can be used in a data model.

equation* string

  • The equation that is used in the data model.

variables list[EqVariable]

  • List of variables that are used in the equation.

parameters list[EqParameter]

  • List of parameters that are used in the equation.

EqVariable

Represents a variable that is used in the equation.

id* string

  • Unique identifier for the variable.

name* string

  • Name of the variable.

symbol string

  • Symbol of the variable.

EqParameter

Represents a parameter that is used in the equation.

id* string

  • Unique identifier for the parameter.

name* string

  • Name of the parameter.

symbol string

  • Symbol of the parameter.

value float

  • Value of the parameter.