system

class sysdynpy.system.System(name)[source]

Bases: object

This class represents a System Dynamics system/model.

It maintains a list of system elements (_system_elements).

__init__(name)[source]

Constructor method.

Parameters

name (str, optional) – The name of the system.

show_system_elements()[source]

Creates a string with information about the system elements.

This includes the properties name and var_name. Depending on the system element calc_rule and input_elements are given as additional information. input_elements only shows the name of all direct input elements to prevent recursion. The string is printed to the console.

_system_elements

A list of system elements.

Type

list

property name

see __init__()