Skip to content

Sequence Diagram(sprint 2)

sangyeop edited this page Apr 21, 2026 · 9 revisions

UC-2-1

sequenceDiagram
    participant g@{"type" : "control"} as GCU
    participant I as INS
    participant s as SKR
    

    
    
    loop Every 10ms
        I->>+g: detect(위도, 경도, 고도, roll, pitch, yaw)
    end

    loop Every 120ms
        s->>+g: detect(방위각(yaw), 고각(pitch))
    end
Loading

UC-2-2

sequenceDiagram
    participant g@{"type" : "control"} as GCU
    participant a as ACT
    
    
    loop Every 1000ms
        g->>+a: move (angle)
    end
Loading

UC-2-3

sequenceDiagram
    participant u@{"type" : "control"} as UI
    participant g as GCU
    loop Every 10ms
        u->>u: 타겟 이동
        u->>+g: 목표 LOS
        g-->>g: 항법 알고리즘
        g-->>-u: act 제어 응답
        u->>u: 화면 표시
    end
    u->>u: 결과창 표시
Loading

UC-2-4

sequenceDiagram
    participant u@{"type" : "control"} as UI
    participant g as GCU
    loop Every Nms
        u->>u: 타겟 이동
        u->>+g: 목표 LOS
        g-->>g: 항법 알고리즘
        g-->>g: 제어 알고리즘
        g-->>-u: act 제어 응답
        u->>u: 화면 표시
    end
    u->>u: 결과창 표시
Loading

UC-2-5

sequenceDiagram
    participant u@{"type" : "control"} as UI
    participant g as GCU
    loop Every Nms
        u->>u: 타겟 이동
        u->>+g: IR 각도측정
        g-->>g: 항법 알고리즘
        g-->>g: 제어 알고리즘
        g-->>-u: act 제어 응답
        u->>u: 화면 표시
    end
    u->>u: 결과창 표시
Loading

Clone this wiki locally