-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata_flow.plantuml
44 lines (37 loc) · 945 Bytes
/
data_flow.plantuml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@startuml
control DataGrabber #red
entity CoolProp #blue
control Data #green
boundary Plot #yellow
database Pandas #red
database CSV #green
autonumber 0 1
activate DataGrabber
DataGrabber -> DataGrabber: Initialize Memory Stores and program
autonumber 1
DataGrabber -> Pandas: Import Library
activate Pandas
autonumber 1
DataGrabber -> CoolProp: Import Library
autonumber 2 1
activate CoolProp
DataGrabber -> CoolProp: Request Data
CoolProp -> DataGrabber: Send Data
deactivate CoolProp
DataGrabber -> Data: Create New List for Empty Data
activate Data
Data -> Data: Trim Bad Data
Data -> Pandas: Store Data in Pandas Frame
deactivate Data
Pandas -> CSV: Write Data to CSV File
activate CSV
DataGrabber-> CSV: Write File to Disk
deactivate CSV
Pandas -> Plot: Plot Data
deactivate Pandas
activate Plot
Plot->Plot: Plot Shown on Screen
Plot->DataGrabber: On Close Signal Plot Close
deactivate Plot
DataGrabber -> DataGrabber: End
@enduml