system¶
-
class
sysdynpy.system.System(name)[source]¶ Bases:
objectThis 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
nameandvar_name. Depending on the system elementcalc_ruleandinput_elementsare given as additional information.input_elementsonly 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__()
-