sankey-beta
%% source,target,value
Feed Air, LOX, 5905.7
Feed Air, LIN, 5934.0
Feed Air, RAR, 290.8
Feed Air, GOX, 815.1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
flowchart TD
%% === Class Definitions ===
classDef utama fill:#e0f2fe,stroke:#0284c7,color:#0c4a6e,stroke-width:2px,font-weight:bold;
classDef proses fill:#ecfdf5,stroke:#10b981,color:#065f46;
classDef keputusan fill:#fefce8,stroke:#eab308,color:#92400e;
classDef akhir fill:#f3e8ff,stroke:#a855f7,color:#6b21a8,stroke-width:2px,font-weight:bold;
%% === Diagram Nodes ===
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (*=========================================================*) | |
| (* OEE Shutdown Runtime Management *) | |
| (* *) | |
| (* Author : Ketut Kumajaya *) | |
| (* Date : 18/07/2025 *) | |
| (* Version: 1.0 *) | |
| (*=========================================================*) | |
| (* Eksekusi di text code lain menggunakan rising trigger ASP_RUN dan delay on *) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FUNCTION_BLOCK CompressorCalc | |
| VAR_INPUT | |
| Q_design : REAL; | |
| T_design : REAL; | |
| PR_design : REAL; | |
| P_design : REAL; | |
| T_real : REAL; | |
| PR_real : REAL; | |
| P_real : REAL; | |
| END_VAR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import math | |
| def calculate_flow(Q_design, T_design, PR_design, P_design, | |
| T_real, PR_real, P_real): | |
| return Q_design * math.sqrt((T_design / T_real) * | |
| (PR_design / PR_real) * | |
| (P_real / P_design)) | |
| def calculate_power(Q_real, Q_design, P_design): | |
| return P_design * (Q_real / Q_design) ** 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": "7a898578.d176fc", | |
| "type": "inject", | |
| "z": "540fcd8a.0bd3e4", | |
| "name": "", | |
| "props": [ | |
| { | |
| "p": "payload" | |
| } |
NewerOlder